const char *GetParsedIP(co nst char *ipadd)
{
// code by Dan Pop, http://bytes.com/forum/thread212174.ht ml
unsigned b1, b2, b3, b4, port = 0;
unsigned char c;
int rc;
static char ipge[20];
if(!Q_strncmp(i padd,"localhost ",strlen("local host")))
return "localhost" ;
rc = sscanf(ipadd, "%3u.%3u.%3u.%3 u:%u%c", &b1, &b2,...