index
:
discoin
1.10-archive
1.14-maint
1.14.4-dev
1.14.5-dev
1.17-dev
1.18-dev
1.21-dev
1.4-archive
1.6-archive
1.7-archive
1.8-archive
1.8-safemode
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
net.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
rpc: add feefilter to peers from getpeerinfo
Patrick Lodder
2021-08-14
1
-0
/
+1
*
Reduce getheaders spam by serializing getheader requests per peer
Patrick Lodder
2021-07-22
1
-0
/
+3
*
Re-introduce alert functionality (#1470)
Ross Nicoll
2018-09-19
1
-0
/
+18
*
net: define NodeId as an int64_t
Cory Fields
2017-04-14
1
-1
/
+1
*
Move CNode::addrLocal access behind locked accessors
Matt Corallo
2017-02-10
1
-1
/
+7
*
Move CNode::addrName accesses behind locked accessors
Matt Corallo
2017-02-10
1
-1
/
+7
*
Move [clean|str]SubVer writes/copyStats into a lock
Matt Corallo
2017-02-10
1
-0
/
+1
*
Make nServices atomic
Matt Corallo
2017-02-10
1
-1
/
+1
*
Make nStartingHeight atomic
Matt Corallo
2017-02-10
1
-1
/
+1
*
Make nTimeConnected const in CNode
Matt Corallo
2017-02-10
1
-1
/
+1
*
net: fix a few races. Credit @TheBlueMatt
Cory Fields
2017-02-10
1
-9
/
+10
*
net: add a lock around hSocket
Cory Fields
2017-02-06
1
-0
/
+1
*
Merge #9659: Net: Turn some methods and params/variables const
Wladimir J. van der Laan
2017-02-06
1
-3
/
+3
|
\
|
*
Net: CConnman: Make some methods const
Jorge Timón
2017-01-31
1
-3
/
+3
*
|
net: log an error rather than asserting if send version is misused
Cory Fields
2017-02-02
1
-19
/
+2
*
|
net: don't run callbacks on nodes that haven't completed the version handshake
Cory Fields
2017-02-02
1
-56
/
+19
*
|
net: deserialize the entire version message locally
Cory Fields
2017-02-02
1
-2
/
+2
|
/
*
Delete some unused (and broken) functions in CConnman
Matt Corallo
2017-01-24
1
-4
/
+0
*
Merge #9535: Split CNode::cs_vSend: message processing and message sending
Wladimir J. van der Laan
2017-01-19
1
-0
/
+2
|
\
|
*
Split CNode::cs_vSend: message processing and message sending
Matt Corallo
2017-01-13
1
-0
/
+2
*
|
Make WakeMessageHandler public
Matt Corallo
2017-01-14
1
-2
/
+2
|
/
*
Merge #9441: Net: Massive speedup. Net locks overhaul
Pieter Wuille
2017-01-13
1
-19
/
+19
|
\
|
*
net: remove cs_vRecvMsg
Cory Fields
2017-01-12
1
-3
/
+1
|
*
net: add a flag to indicate when a node's send buffer is full
Cory Fields
2017-01-12
1
-1
/
+2
|
*
net: add a flag to indicate when a node's process queue is full
Cory Fields
2017-01-12
1
-9
/
+2
|
*
net: add a new message queue for the message processor
Cory Fields
2017-01-12
1
-0
/
+3
|
*
net: rework the way that the messagehandler sleeps
Cory Fields
2017-01-12
1
-0
/
+3
|
*
net: Add a simple function for waking the message handler
Cory Fields
2017-01-12
1
-0
/
+2
|
*
net: set message deserialization version when it's actually time to deserialize
Cory Fields
2017-01-04
1
-4
/
+5
|
*
net: make GetReceiveFloodSize public
Cory Fields
2017-01-04
1
-2
/
+1
|
*
net: make vRecvMsg a list so that we can use splice()
Cory Fields
2017-01-04
1
-1
/
+1
*
|
Break addnode out from the outbound connection limits.
Gregory Maxwell
2017-01-05
1
-2
/
+9
|
/
*
Merge #9289: net: drop boost::thread_group
Wladimir J. van der Laan
2017-01-04
1
-4
/
+19
|
\
|
*
net: make net processing interruptible
Cory Fields
2017-01-03
1
-2
/
+2
|
*
net: make net interruptible
Cory Fields
2017-01-03
1
-2
/
+17
*
|
Increment MIT Licence copyright header year on files modified in 2016
isle2983
2016-12-31
1
-1
/
+1
|
/
*
Merge #9226: Remove fNetworkNode and pnodeLocalHost.
Pieter Wuille
2016-11-30
1
-1
/
+0
|
\
|
*
Remove fNetworkNode.
Gregory Maxwell
2016-11-27
1
-1
/
+0
*
|
Merge #9225: Fix some benign races
Wladimir J. van der Laan
2016-11-29
1
-1
/
+1
|
\
\
|
|
/
|
/
|
|
*
Make fDisconnect an std::atomic
Matt Corallo
2016-11-25
1
-1
/
+1
*
|
net: push only raw data into CConnman
Cory Fields
2016-11-25
1
-32
/
+3
*
|
net: add CVectorWriter and CNetMsgMaker
Cory Fields
2016-11-25
1
-0
/
+14
|
/
*
fNetworkActive is not protected by a lock, use an atomic
Jonas Schnelli
2016-11-11
1
-1
/
+1
*
Merge #8996: Network activity toggle
Jonas Schnelli
2016-11-11
1
-0
/
+3
|
\
|
*
RPC: Add "togglenetwork" method to toggle network activity temporarily
Jon Lund Steffensen
2016-10-24
1
-0
/
+1
|
*
Allow network activity to be temporarily suspended.
Jon Lund Steffensen
2016-10-24
1
-0
/
+2
*
|
Merge #9039: Various serialization simplifcations and optimizations
Wladimir J. van der Laan
2016-11-09
1
-1
/
+1
|
\
\
|
*
|
Get rid of nType and nVersion
Pieter Wuille
2016-11-07
1
-1
/
+1
|
*
|
Make nType and nVersion private and sometimes const
Pieter Wuille
2016-11-07
1
-1
/
+1
*
|
|
Merge #9045: Hash P2P messages as they are received instead of at process-time
Pieter Wuille
2016-11-07
1
-0
/
+5
|
\
\
\
|
|
/
/
|
/
|
|
[next]