| 28 | } |
| 29 | |
| 30 | void QTelnet::setType(SocketType type) |
| 31 | { |
| 32 | if(type != TCP && type != WEBSOCKET && type != SECUREWEBSOCKET) |
| 33 | m_socketType = TCP; |
| 34 | else |
| 35 | m_socketType = type; |
| 36 | } |
| 37 | |
| 38 | QString QTelnet::peerInfo() const |
| 39 | { |
no outgoing calls
no test coverage detected