Home | History | Annotate | Download | only in coregrind

Lines Matching defs:ip

1016    Supplied string contains either an ip address "192.168.0.1" or
1017 an ip address and port pair, "192.168.0.1:1500". Parse these,
1029 UInt ip = 0;
1031 Bool ok = parse_inet_addr_and_port(str, &ip, &port);
1036 // VG_(printf)("ip = %d.%d.%d.%d, port %d\n",
1037 // (ip >> 24) & 0xFF, (ip >> 16) & 0xFF,
1038 // (ip >> 8) & 0xFF, ip & 0xFF,
1042 servAddr.sin_addr.s_addr = VG_(htonl)(ip);