mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-03 19:29:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			502 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			502 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package bittorrent
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
 | 
						|
	"v2ray.com/core"
 | 
						|
)
 | 
						|
 | 
						|
type SniffHeader struct {
 | 
						|
}
 | 
						|
 | 
						|
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, core.ErrNoClue
 | 
						|
	}
 | 
						|
 | 
						|
	if b[0] == 19 && string(b[1:20]) == "BitTorrent protocol" {
 | 
						|
		return &SniffHeader{}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	return nil, errNotBittorrent
 | 
						|
}
 |