MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / send

Method send

src/utils/bluetooth/socket_bluetooth_linux.cpp:58–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58int SocketBluetooth::send (const char *data, int size)
59{
60 if (socket_bt < 0)
61 {
62 return -1;
63 }
64 int res = ::send (socket_bt, data, size, 0);
65 return res;
66}
67
68int SocketBluetooth::recv (char *data, int size)
69{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected