---------------------------------------------------------------------------
| 103 | } |
| 104 | //--------------------------------------------------------------------------- |
| 105 | void TcpServerStop(void) |
| 106 | { |
| 107 | if( tcp->IsOpen() ) |
| 108 | { |
| 109 | TcpCloseAllConnections(); |
| 110 | tcp->Close(); |
| 111 | TcpPrintStatus(); |
| 112 | } |
| 113 | } |
| 114 | //--------------------------------------------------------------------------- |
| 115 | void TcpAccept(void) |
| 116 | { |
no test coverage detected