aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/whisperv6/peer_test.go
Commit message (Collapse)AuthorAgeFilesLines
* whisper: add light mode check to handshake (#16725)b00ris2018-09-051-0/+61
|
* #15685 made peer_test.go more portable by using random free port instead of ↵Armin Braun2018-06-141-25/+20
| | | | | | | | | | hardcoded port 30303 (#15687) Improves test portability by resolving 127.0.0.1:0 to get a random free port instead of the hard coded one. Now the test works if you have a running node on the same interface already. Fixes #15685
* whisper: topics replaced by bloom filtersVlad2018-03-011-3/+3
|
* whisper: fix typob00ris2018-02-281-2/+2
|
* whisper: fixed dataraceb00ris2018-02-281-7/+11
|
* whisper: test timeout extended (#16088)gluk2562018-02-151-25/+74
| | | | | | | | * whisper: timeout extended * whisper: test updated * whisper: test updated
* whisper: get wnode to work with v6 (#16051)Guillaume Ballet2018-02-101-2/+2
| | | | | | | | | | The bulk of the issue was to adapt to the new requirement that a v6 filter has to either contain a symmertric key or an asymmetric one. This commits revert one of the fixes that I made to remove a linter warning: unexporting NewSentMessage. This is not really a problem as I have a cleanup in the pipe that will solve this issue.
* whisper: improve a log message to analyze a travis issueGuillaume Ballet2018-02-061-1/+1
|
* whisper: change the whisper message format so as to add the payload size ↵gluk2562018-01-301-11/+42
| | | | | | | | | | | | | | | | | | (#15870) * whisper: message format changed * whisper: tests fixed * whisper: style fixes * whisper: fixed names, fixed failing tests * whisper: fix merge issue in #15870 Occured while using the github online merge tool. Lesson learned. * whisper: fix a gofmt error for #15870
* whisper: remove linter warnings (#15972)Guillaume Ballet2018-01-261-15/+15
| | | | | | | | | | | | | | | | | | | | | | | * whisper: fixes warnings from the code linter * whisper: more non-API-breaking changes The remaining lint errors are because of auto-generated files and one is because an exported function has a non- exported return type. Changing this would break the API, and will be part of another commit for easier reversal. * whisper: un-export NewSentMessage to please the linter This is an API change, which is why it's in its own commit. This change was initiated after the linter complained that the returned type wasn't exported. I chose to un-export the function instead of exporting the type, because that type is an implementation detail that I would like to change in the near future to make the code more readable and with an increased coverage. * whisper: update gencodec output after upgrading it to new lint standards
* whisper/whisperv6: implement pow/bloom exchange protocol (#15802)gluk2562018-01-121-20/+85
| | | This is the main feature of v6.
* whisper/whisperv6: PoW requirement (#15701)gluk2562017-12-211-19/+78
| | | | New Whisper-level message introduced (PoW requirement), corresponding logic added, plus some tests.
* whisper/whisperv6: initial commit (clone of v5) (#15324)gluk2562017-11-041-0/+306