| 19 | |
| 20 | |
| 21 | SocketBluetooth::SocketBluetooth (std::string mac_addr, int port) |
| 22 | { |
| 23 | this->mac_addr = mac_addr; |
| 24 | this->port = port; |
| 25 | socket_bt = -1; |
| 26 | rep[0] = -1; |
| 27 | rep[1] = -1; |
| 28 | } |
| 29 | |
| 30 | int SocketBluetooth::connect () |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected