| 23 | } |
| 24 | |
| 25 | SocketBluetooth::SocketBluetooth (std::string mac_addr, int port) |
| 26 | { |
| 27 | this->mac_addr = mac_addr; |
| 28 | this->port = port; |
| 29 | socket_bt = INVALID_SOCKET; |
| 30 | } |
| 31 | |
| 32 | int SocketBluetooth::connect () |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected