| 286 | |
| 287 | |
| 288 | CECServerSocket::CECServerSocket(ECNotifier *notifier) |
| 289 | : |
| 290 | CECMuleSocket(true), |
| 291 | m_conn_state(CONN_INIT), |
| 292 | m_passwd_salt(GetRandomUint64()), |
| 293 | m_notification_dispatch_depth(0), |
| 294 | m_lastEcGenSeen(0), |
| 295 | m_lastEcGenSeenShared(0), |
| 296 | m_lastEcGenSeenPart(0), |
| 297 | m_partialUpdateActive(false) |
| 298 | { |
| 299 | wxASSERT(theApp->ECServerHandler); |
| 300 | theApp->ECServerHandler->AddSocket(this); |
| 301 | m_ec_notifier = notifier; |
| 302 | } |
| 303 | |
| 304 | |
| 305 | CECServerSocket::~CECServerSocket() |
nothing calls this directly
no test coverage detected