2020-07-15 04:00:47 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2020-11-05 02:28:45 +00:00
|
|
|
"github.com/anacrolix/torrent/mse"
|
2020-07-15 04:00:47 +00:00
|
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
|
|
|
)
|
|
|
|
|
2020-11-05 02:28:45 +00:00
|
|
|
// 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 04:00:47 +00:00
|
|
|
type Callbacks struct {
|
2020-11-05 02:28:45 +00:00
|
|
|
// Called after a peer connection completes the BitTorrent handshake. The Client lock is not
|
|
|
|
// held.
|
|
|
|
CompletedHandshake func(*PeerConn, InfoHash)
|
2020-07-15 06:16:09 +00:00
|
|
|
ReadMessage func(*PeerConn, *pp.Message)
|
|
|
|
ReadExtendedHandshake func(*PeerConn, *pp.ExtendedHandshakeMessage)
|
2020-10-13 02:02:39 +00:00
|
|
|
PeerConnClosed func(*PeerConn)
|
2020-11-05 02:28:45 +00:00
|
|
|
|
|
|
|
// Provides secret keys to be tried against incoming encrypted connections.
|
|
|
|
ReceiveEncryptedHandshakeSkeys mse.SecretKeyIter
|
2021-01-20 03:22:44 +00:00
|
|
|
|
|
|
|
ReceivedUsefulData []func(ReceivedUsefulDataEvent)
|
|
|
|
}
|
|
|
|
|
|
|
|
type ReceivedUsefulDataEvent struct {
|
|
|
|
Peer *Peer
|
|
|
|
Message *pp.Message
|
2020-07-15 04:00:47 +00:00
|
|
|
}
|