MCPcopy Create free account
hub / github.com/SFML/SFML / send

Method send

src/SFML/Network/TcpSocket.cpp:1079–1087  ·  view source on GitHub ↗

///////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

1077
1078////////////////////////////////////////////////////////////
1079Socket::Status TcpSocket::send(const void* data, std::size_t size)
1080{
1081 if (!isBlocking())
1082 err() << "Warning: Partial sends might not be handled properly." << std::endl;
1083
1084 std::size_t sent = 0;
1085
1086 return send(data, size, sent);
1087}
1088
1089
1090////////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 3

resetMethod · 0.80
onSendMethod · 0.80
resizeMethod · 0.45

Tested by

no test coverage detected