MCPcopy Create free account
hub / github.com/catboost/catboost / GetSockOpt

Function GetSockOpt

util/network/socket.h:67–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65
66template <class T>
67static inline int GetSockOpt(SOCKET s, int level, int optname, T& opt) noexcept {
68 socklen_t len = sizeof(opt);
69
70 return getsockopt(s, level, optname, (char*)&opt, &len);
71}
72
73template <class T>
74static inline void CheckedSetSockOpt(SOCKET s, int level, int optname, T opt, const char* err) {

Callers 6

CreateSocketMethod · 0.85
SendMsgMethod · 0.85
IncreaseSendBuffMethod · 0.85
RunMethod · 0.85
GetMaximumSegmentSizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected