MCPcopy Create free account
hub / github.com/FastLED/FastLED / plat_send

Function plat_send

src/fl/stl/asio/ip/tcp.cpp.hpp:50–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50ssize_t plat_send(int fd, const void *buf, size_t len, int flags) {
51#ifdef FL_IS_WIN
52 return fl::send(fd, buf, len, flags);
53#else
54 return ::send(fd, buf, len, flags);
55#endif
56}
57
58ssize_t plat_recv(int fd, void *buf, size_t len, int flags) {
59#ifdef FL_IS_WIN

Callers 1

write_someMethod · 0.85

Calls 1

sendFunction · 0.50

Tested by

no test coverage detected