| 118 | } |
| 119 | |
| 120 | void NetworkClient::SetName(std::string new_name) |
| 121 | { |
| 122 | client_name = new_name; |
| 123 | |
| 124 | if(server_connected == true) |
| 125 | { |
| 126 | SendData_ClientString(); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void NetworkClient::SetPort(unsigned short new_port) |
| 131 | { |
no outgoing calls
no test coverage detected