Ori Newman
04b578cee1
[NOD-1137] Implement handshake protocol ( #792 )
...
* [NOD-1126] Implement block relay flow
* [NOD-1126] Implement block relay flow
* [NOD-1126] Add StartGetRelayBlocksListener
* [NOD-1126] Integrate with new interface
* [NOD-1126] Fix comments
* [NOD-1126] Refactor protocol.go
* [NOD-1126] Split long lines
* [NOD-1126] Fix comment
* [NOD-1126] move sharedRequestedBlocks to a separate file
* [NOD-1126] Fix error message
* [NOD-1126] Move handleInv to StartBlockRelay
* [NOD-1126] Create hashesQueueSet type
* [NOD-1126] Make deleteFromRequestedBlocks a method
* [NOD-1126] Fix comment
* [NOD-1126] Add block logger
* [NOD-1126] Rename advertisedProtoVer->advertisedProtocolVer
* [NOD-1126] Fix comment and an error message
* [NOD-1126] Remove redundant loop
* [NOD-1126] Move requestBlocks upper
* [NOD-1126] Remove exiting blocks in requestedBlocks from hashesToRequest
* [NOD-1126] Change comment
* [NOD-1126] Rename stallResponseTimeout->timeout
* [NOD-1126] Use switch inside readMsgBlock
* [NOD-1126] Fix error message and remove redundant log
* [NOD-1126] Rename pacakge names
* [NOD-1126] Fix comment
* [NOD-1126] Change file names
* [NOD-1126] Convert block to partial if needed
* [NOD-1126] Remove function redeclaration
* [NOD-1126] continue instead of return
* [NOD-1126] Rename LogBlockBlueScore->LogBlock
* [NOD-1126] Add minimum functions to utils
* [NOD-1126] Flip condition on readInv
* [NOD-1126] Rename utilMath->mathUtil
* [NOD-1126] Fix comment
* [NOD-1137] Implement handshake
* [NOD-1137] Replace version's nonce with ID
* [NOD-1137] Remove redundant function
* [NOD-1137] Move handshake to a separate file
* [NOD-1137] Add todo
* [NOD-1137] Replace peer internal id with global peer ID
* [NOD-1137] Add serializer/deserializer to ID
* [NOD-1137] Remove validation from AddUserAgent
* [NOD-1137] Add missing id package
* [NOD-1137] Rename variables
* [NOD-1137] Add comment
* [NOD-1137] Implement GetBestLocalAddress
* [NOD-1137] Implement TODOs
* [NOD-1137] Rename variables
* [NOD-1137] Move errors.Is inside err!=nil branch
* [NOD-1137] Fix erroneous condition on Dequeue
* [NOD-1137] Fix bug in GetReadyPeerIDs
* [NOD-1137] Handle external IP on GetBestLocalAddress
* [NOD-1137] Remove version and verack message types when handshake is over
* [NOD-1137] Add FromBytes to id package
* [NOD-1137] Add protocol error
* [NOD-1137] Add ErrTimeout
* [NOD-1137] Log error only if exists
* [NOD-1137] Replace idFromBytes->id.FromBytes
* [NOD-1137] Add comments
* [NOD-1137] Remove ErrTimeout
* [NOD-1137] Unremove ErrTimeout
* [NOD-1137] Change comment
* [NOD-1137] Use EnqueueWithTimeout everywhere in protocol
2020-07-14 17:20:29 +03:00
stasatdaglabs
f8e53d309c
[NOD-1142] Implement EnqueueWithTimeout and DequeueWithTimeout ( #794 )
...
* [NOD-1142] Implement EnqueueWithTimeout and DequeueWithTimeout.
* [NOD-1142] Use DequeueWithTimeout in readMsgBlock.
* [NOD-1142] Add comments about the new methods.
2020-07-14 16:14:27 +03:00
stasatdaglabs
05db135d23
[NOD-1124] Implement the Flow thread model and architecture ( #791 )
...
* [NOD-1124] Move Router to the router package.
* [NOD-1124] Implement SetOnRouteCapacityReachedHandler.
* [NOD-1124] Use Routes instead of bare channels.
* [NOD-1124] Fix merge errors.
* [NOD-1124] Connect the Router to the Connection.
* [NOD-1124] Fix merge errors.
* [NOD-1124] Move some variables around.
* [NOD-1124] Fix unreachable code.
* [NOD-1124] Fix a variable name.
* [NOD-1124] Rename AddRoute to AddIncomingRoute.
* [NOD-1124] Rename SetRouter to Start.
* [NOD-1124] Make AddIncomingRoute create a Route by itself.
* [NOD-1124] Replace IncomingRoute with EnqueueIncomingMessage.
* [NOD-1124] Make Enqueue and Dequeue return isOpen instead of err.
* [NOD-1124] Remove writeDuringDisconnectLock.
* [NOD-1124] In sendLoop, move outgoingRoute to outside the loop.
* [NOD-1124] Start the connection loops only when Start is called.
* [NOD-1124] Replace OnIDReceivedHandler with AssociateRouterID.
* [NOD-1124] Add isOpen to Enqueue and Dequeue.
* [NOD-1124] Protect errChan from writing during disconnect.
2020-07-13 16:51:13 +03:00
Ori Newman
433cdb6006
[NOD-1126] implement block relay flow ( #786 )
...
* [NOD-1126] Implement block relay flow
* [NOD-1126] Add StartGetRelayBlocksListener
* [NOD-1126] Implement block relay flow
* [NOD-1126] Integrate with new interface
* [NOD-1126] Fix comments
* [NOD-1126] Refactor protocol.go
* [NOD-1126] Split long lines
* [NOD-1126] Fix comment
* [NOD-1126] move sharedRequestedBlocks to a separate file
* [NOD-1126] Fix error message
* [NOD-1126] Move handleInv to StartBlockRelay
* [NOD-1126] Create hashesQueueSet type
* [NOD-1126] Make deleteFromRequestedBlocks a method
* [NOD-1126] Fix comment
* [NOD-1126] Add block logger
* [NOD-1126] Rename advertisedProtoVer->advertisedProtocolVer
* [NOD-1126] Fix comment and an error message
* [NOD-1126] Remove redundant loop
* [NOD-1126] Move requestBlocks upper
* [NOD-1126] Remove exiting blocks in requestedBlocks from hashesToRequest
* [NOD-1126] Change comment
* [NOD-1126] Rename stallResponseTimeout->timeout
* [NOD-1126] Use switch inside readMsgBlock
* [NOD-1126] Fix error message and remove redundant log
* [NOD-1126] Rename pacakge names
* [NOD-1126] Fix comment
* [NOD-1126] Change file names
* [NOD-1126] Convert block to partial if needed
* [NOD-1126] Remove function redeclaration
* [NOD-1126] continue instead of return
* [NOD-1126] Rename LogBlockBlueScore->LogBlock
* [NOD-1126] Add minimum functions to utils
* [NOD-1126] Flip condition on readInv
* [NOD-1126] Rename utilMath->mathUtil
* [NOD-1126] Fix comment
2020-07-12 16:11:42 +03:00