2
0
mirror of synced 2025-02-23 06:08:07 +00:00
torrent/callbacks.go

41 lines
1.2 KiB
Go
Raw Normal View History

2020-07-15 14:00:47 +10:00
package torrent
import (
"github.com/anacrolix/torrent/mse"
2020-07-15 14:00:47 +10:00
pp "github.com/anacrolix/torrent/peer_protocol"
)
// These are called synchronously, and do not pass ownership of arguments (do not expect to retain
// data after returning from the callback). The Client and other locks may still be held. nil
// functions are not called.
2020-07-15 14:00:47 +10:00
type Callbacks struct {
// Called after a peer connection completes the BitTorrent handshake. The Client lock is not
// held.
CompletedHandshake func(*PeerConn, InfoHash)
2020-07-15 16:16:09 +10:00
ReadMessage func(*PeerConn, *pp.Message)
ReadExtendedHandshake func(*PeerConn, *pp.ExtendedHandshakeMessage)
2020-10-13 13:02:39 +11:00
PeerConnClosed func(*PeerConn)
// Provides secret keys to be tried against incoming encrypted connections.
ReceiveEncryptedHandshakeSkeys mse.SecretKeyIter
2021-01-20 14:22:44 +11:00
ReceivedUsefulData []func(ReceivedUsefulDataEvent)
ReceivedRequested []func(PeerMessageEvent)
DeletedRequest []func(PeerRequestEvent)
SentRequest []func(PeerRequestEvent)
PeerClosed []func(*Peer)
NewPeer []func(*Peer)
2021-01-20 14:22:44 +11:00
}
type ReceivedUsefulDataEvent = PeerMessageEvent
type PeerMessageEvent struct {
2021-01-20 14:22:44 +11:00
Peer *Peer
Message *pp.Message
2020-07-15 14:00:47 +10:00
}
type PeerRequestEvent struct {
Peer *Peer
Request
}