| 38 | // CUT_IPAddressRange structure. |
| 39 | // =================================================================== |
| 40 | typedef struct CUT_IPAddressRange |
| 41 | { |
| 42 | CUT_IPAddressRange() |
| 43 | { m_ipStartAddress.s_addr = 0; m_ipEndAddress.s_addr = 0; } |
| 44 | |
| 45 | in_addr m_ipStartAddress; // First address of the range |
| 46 | in_addr m_ipEndAddress; // Last address of the range |
| 47 | } CUT_IPAddressRange; |
| 48 | |
| 49 | // =================================================================== |
| 50 | // CUT_BlockedIPAddr structure. |
nothing calls this directly
no outgoing calls
no test coverage detected