| 640 | //-------------------------------------------------------------------- |
| 641 | |
| 642 | void NetConnection::setEstablished() |
| 643 | { |
| 644 | AssertFatal(!mEstablished, "NetConnection::setEstablished - Error, this NetConnection has already been established."); |
| 645 | |
| 646 | mEstablished = true; |
| 647 | mNextConnection = mConnectionList; |
| 648 | if(mConnectionList) |
| 649 | mConnectionList->mPrevConnection = this; |
| 650 | mConnectionList = this; |
| 651 | |
| 652 | if(isNetworkConnection()) |
| 653 | netAddressTableInsert(); |
| 654 | |
| 655 | } |
| 656 | |
| 657 | void NetConnection::onRemove() |
| 658 | { |
no outgoing calls
no test coverage detected