aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
AgeCommit message (Expand)Author
2021-04-01[net] Changes to RunInactivityChecksJohn Newbery
2021-03-31Merge #21486: build: link against -lsocket if required for *ifaddrsfanquake
2021-03-30Merge #21387: p2p: Refactor sock to add I2P fuzz and unit testsWladimir J. van der Laan
2021-03-30Merge #20197: p2p: protect onions in AttemptToEvictConnection(), add eviction...Wladimir J. van der Laan
2021-03-29net: add ifaddrs.h includefanquake
2021-03-22[net] remove fUpdateConnectionTime from FinalizeNodeJohn Newbery
2021-03-20[net] remove CConnman::AddNewAddressesJohn Newbery
2021-03-20[net] remove CConnman::MarkAddressGoodJohn Newbery
2021-03-20[net] remove CConnman::SetServicesJohn Newbery
2021-03-20[net] Construct addrman outside connmanJohn Newbery
2021-03-19Merge #21328: net, refactor: pass uint16 CService::port as uint16MarcoFalke
2021-03-19Protect onion+localhost peers in ProtectEvictionCandidatesByRatio()Jon Atack
2021-03-19Use EraseLastKElements() throughout SelectNodeToEvict()Jon Atack
2021-03-19Add m_inbound_onion to AttemptToEvictConnection()Jon Atack
2021-03-19Extract ProtectEvictionCandidatesByRatio from SelectNodeToEvictJon Atack
2021-03-17refactor: post Optional<> removal cleanupsfanquake
2021-03-16p2p, refactor: pass and use uint16_t CService::port as uint16_tJon Atack
2021-03-16i2p: use pointers to Sock to accommodate mockingVasil Dimov
2021-03-16net: change ConnectSocketDirectly() to take a Sock argumentVasil Dimov
2021-03-15scripted-diff: remove Optional & nulloptfanquake
2021-03-11scripted-diff: remove MakeUnique<T>()fanquake
2021-03-04net: Replace enum CConnMan::NumConnections with enum class ConnectionDirectionLuke Dashjr
2021-03-03Make all Poisson delays use std::chrono typesPieter Wuille
2021-03-03Change all ping times to std::chrono typesPieter Wuille
2021-03-01net: accept incoming I2P connections from CConnmanVasil Dimov
2021-03-01net: make outgoing I2P connections from CConnmanVasil Dimov
2021-03-01init: introduce I2P connectivity optionsVasil Dimov
2021-03-01net: dedup MSG_NOSIGNAL and MSG_DONTWAIT definitionsVasil Dimov
2021-03-01net: avoid unnecessary GetBindAddress() callVasil Dimov
2021-03-01net: isolate the protocol-agnostic part of CConnman::AcceptConnection()Vasil Dimov
2021-03-01net: get the bind address earlier in CConnman::AcceptConnection()Vasil Dimov
2021-03-01net: check for invalid socket earlier in CConnman::AcceptConnection()Vasil Dimov
2021-02-23Merge #21222: log: Clarify log message when file does not existMarcoFalke
2021-02-18log: Clarify log message when file does not existMarcoFalke
2021-02-18[net] Move checks from GetLocalAddrForPeer to callerJohn Newbery
2021-02-18[net] Change AdvertiseLocal to GetLocalAddrForPeerJohn Newbery
2021-02-15scripted-diff: rename ping membersJohn Newbery
2021-02-15[net processing] Move ping data fields to net processingJohn Newbery
2021-02-15[net processing] Move ping timeout logic to net processingJohn Newbery
2021-02-15[net] Add RunInactivityChecks()John Newbery
2021-02-12net: remove CNode::m_inbound_onion defaults for explicitnessJon Atack
2021-02-12net: make CNode::m_inbound_onion public, drop getter, update testsJon Atack
2021-02-12[refactor] Correct log message in net.cppDhruv Mehta
2021-02-12Merge #19884: p2p: No delay in adding fixed seeds if -dnsseed=0 and peers.dat...Wladimir J. van der Laan
2021-02-11[p2p] No delay in adding fixed seeds if -dnsseed=0 and peers.dat is empty. Ad...Dhruv Mehta
2021-02-11Merge #20788: net: add RAII socket and use it instead of bare SOCKETWladimir J. van der Laan
2021-02-10net: use Sock in InterruptibleRecv() and Socks5()Vasil Dimov
2021-02-10net: add RAII socket and use it instead of bare SOCKETVasil Dimov
2021-02-10net: move CloseSocket() from netbase to util/sockVasil Dimov
2021-02-02Merge #19509: Per-Peer Message CaptureMarcoFalke