| 430 | } |
| 431 | |
| 432 | void Host::ConnectCommand( const CommandsArguments& args ) |
| 433 | { |
| 434 | if( args.empty() ) |
| 435 | { |
| 436 | Log::Info( "Expected server address" ); |
| 437 | return; |
| 438 | } |
| 439 | |
| 440 | ConnectToServer( args[0].c_str(), Net::c_default_client_tcp_port, Net::c_default_client_udp_port ); |
| 441 | } |
| 442 | |
| 443 | void Host::DisconnectCommand() |
| 444 | { |
nothing calls this directly
no outgoing calls
no test coverage detected