| 56 | } |
| 57 | |
| 58 | int 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 | |
| 68 | int SocketBluetooth::recv (char *data, int size) |
| 69 | { |
nothing calls this directly
no outgoing calls
no test coverage detected