aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/rlpx_test.go
Commit message (Collapse)AuthorAgeFilesLines
* p2p: use package rlp to encode messagesFelix Lange2015-03-191-2/+2
| | | | | | | | | | Message encoding functions have been renamed to catch any uses. The switch to the new encoder can cause subtle incompatibilities. If there are any users outside of our tree, they will at least be alerted that there was a change. NewMsg no longer exists. The replacements for EncodeMsg are called Send and SendItems.
* p2p: msg.Payload contains list dataFelix Lange2015-03-041-12/+2
| | | | | | | | | With RLPx frames, the message code is contained in the frame and is no longer part of the encoded data. EncodeMsg, Msg.Decode have been updated to match. Code that decodes RLP directly from Msg.Payload will need to change.
* p2p: make RLPx frame MAC 16 bytes as defined in the specFelix Lange2015-03-041-1/+0
|
* p2p: encrypted and authenticated RLPx frame I/OFelix Lange2015-03-041-17/+29
|
* p2p: add basic RLPx frame I/OFelix Lange2015-03-041-0/+123