v2fly/common/protocol/bittorrent/bittorrent.go

32 lines
525 B
Go
Raw Normal View History

2018-07-16 10:56:50 +00:00
package bittorrent
import (
"errors"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
2018-07-16 10:56:50 +00:00
)
2021-05-19 21:28:52 +00:00
type SniffHeader struct{}
2018-07-16 10:56:50 +00:00
func (h *SniffHeader) Protocol() string {
return "bittorrent"
}
func (h *SniffHeader) Domain() string {
return ""
}
var errNotBittorrent = errors.New("not bittorrent header")
func SniffBittorrent(b []byte) (*SniffHeader, error) {
if len(b) < 20 {
return nil, common.ErrNoClue
2018-07-16 10:56:50 +00:00
}
if b[0] == 19 && string(b[1:20]) == "BitTorrent protocol" {
return &SniffHeader{}, nil
}
return nil, errNotBittorrent
}