| 166 | } |
| 167 | |
| 168 | CService LookupNumeric(const char *pszName, int portDefault) |
| 169 | { |
| 170 | CService addr; |
| 171 | // "1.2:345" will fail to resolve the ip, but will still set the port. |
| 172 | // If the ip fails to resolve, re-init the result. |
| 173 | if(!Lookup(pszName, addr, portDefault, false)) |
| 174 | addr = CService(); |
| 175 | return addr; |
| 176 | } |
| 177 | |
| 178 | struct timeval MillisToTimeval(int64_t nTimeout) |
| 179 | { |