| 785 | } |
| 786 | |
| 787 | void CRegister::OnShutdown() |
| 788 | { |
| 789 | for(int i = 0; i < NUM_PROTOCOLS; i++) |
| 790 | { |
| 791 | if(!m_aProtocolEnabled[i]) |
| 792 | { |
| 793 | continue; |
| 794 | } |
| 795 | m_aProtocols[i].SendDeleteIfRegistered(true); |
| 796 | } |
| 797 | } |
| 798 | |
| 799 | IRegister *CreateRegister(CConfig *pConfig, IConsole *pConsole, IEngine *pEngine, IHttp *pHttp, int ServerPort, unsigned SixupSecurityToken) |
| 800 | { |
no test coverage detected