aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/discv5/ticket.go
Commit message (Collapse)AuthorAgeFilesLines
* p2p: fix some golint warnings (#16577)kiel barry2018-05-081-2/+2
|
* p2p/discv5: fix multiple discovery issues (#16036)Felföldi Zsolt2018-02-091-2/+2
| | | | | | | | | | | | * p2p/discv5: add query delay, fix node address update logic, retry refresh if empty * p2p/discv5: remove unnecessary ping before topic query * p2p/discv5: do not filter local address from topicNodes * p2p/discv5: remove canQuery() * p2p/discv5: gofmt
* p2p/discv5: fix removeTicketRef cached ticket removal (#15995)Felföldi Zsolt2018-01-311-4/+4
|
* p2p/discv5: fix topic register panic at shutdown (#15946)Felföldi Zsolt2018-01-231-1/+1
|
* p2p, p2p/discover, p2p/discv5: implement UDP port sharing (#15200)Felföldi Zsolt2018-01-221-1/+1
| | | | | | | | | | | | | | | This commit affects p2p/discv5 "topic discovery" by running it on the same UDP port where the old discovery works. This is realized by giving an "unhandled" packet channel to the old v4 discovery packet handler where all invalid packets are sent. These packets are then processed by v5. v5 packets are always invalid when interpreted by v4 and vice versa. This is ensured by adding one to the first byte of the packet hash in v5 packets. DiscoveryV5Bootnodes is also changed to point to new bootnodes that are implementing the changed packet format with modified hash. Existing and new v5 bootnodes are both running on different ports ATM.
* p2p/discv5: fix reg lookup, polish code, use logger (#15737)Péter Szilágyi2017-12-281-109/+108
|
* all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-131-6/+6
|
* all: gofmt -w -sFelix Lange2017-01-061-1/+1
|
* p2p/discv5: search and lookup improvementZsolt Felfoldi2016-12-081-30/+14
|
* p2p/discv5: fixed bootnode connect issuesZsolt Felfoldi2016-11-141-1/+3
|
* all: update license informationFelix Lange2016-11-091-1/+1
|
* p2p/discv5: fix build with Go 1.5, delete package testimgFelix Lange2016-11-091-2/+18
|
* p2p/discv5: added new topic discovery packageZsolt Felfoldi2016-11-091-0/+953