http: fixed bencoding, compact, added log
This commit is contained in:
parent
8a6618f947
commit
6c2ab5170d
3 changed files with 6 additions and 3 deletions
|
@ -34,7 +34,7 @@ func announceRequest(r *http.Request, cfg *httpConfig) (*chihaya.AnnounceRequest
|
||||||
}
|
}
|
||||||
|
|
||||||
compactStr, _ := q.String("compact")
|
compactStr, _ := q.String("compact")
|
||||||
request.Compact = compactStr != "0"
|
request.Compact = compactStr != "" && compactStr != "0"
|
||||||
|
|
||||||
infoHashes := q.InfoHashes()
|
infoHashes := q.InfoHashes()
|
||||||
if len(infoHashes) < 1 {
|
if len(infoHashes) < 1 {
|
||||||
|
|
|
@ -112,7 +112,10 @@ func (s *httpServer) serveAnnounce(w http.ResponseWriter, r *http.Request, p htt
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
writeAnnounceResponse(w, resp)
|
err = writeAnnounceResponse(w, resp)
|
||||||
|
if err != nil {
|
||||||
|
log.Println("error serializing response", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *httpServer) serveScrape(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
func (s *httpServer) serveScrape(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
||||||
|
|
|
@ -91,7 +91,7 @@ func compact(peer chihaya.Peer) (buf []byte) {
|
||||||
|
|
||||||
func dict(peer chihaya.Peer) bencode.Dict {
|
func dict(peer chihaya.Peer) bencode.Dict {
|
||||||
return bencode.Dict{
|
return bencode.Dict{
|
||||||
"peer id": peer.ID,
|
"peer id": string(peer.ID),
|
||||||
"ip": peer.IP.String(),
|
"ip": peer.IP.String(),
|
||||||
"port": peer.Port,
|
"port": peer.Port,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue