| 2 | #include "netban.h" |
| 3 | |
| 4 | bool CNetBan::StrAllnum(const char *pStr) |
| 5 | { |
| 6 | while(*pStr) |
| 7 | { |
| 8 | if(!(*pStr >= '0' && *pStr <= '9')) |
| 9 | return false; |
| 10 | pStr++; |
| 11 | } |
| 12 | return true; |
| 13 | } |
| 14 | |
| 15 | |
| 16 | CNetBan::CNetHash::CNetHash(const NETADDR *pAddr) |
nothing calls this directly
no outgoing calls
no test coverage detected