Lines Matching defs:address
46 * "backend [IPv4]" - numerical IPv4 address of backend to connect to
285 /* connect to a given IPv4 address, not the one asked for */
346 /* copy port and address from connect request */
374 unsigned char *address;
516 o IP V4 address: X'01'
518 o IP V6 address: X'04'
521 address = &buffer[SOCKS5_DSTADDR];
524 /* 4 bytes IPv4 address */
528 /* The first octet of the address field contains the number of octets of
534 /* 16 bytes IPv6 address */
555 /* 4 bytes IPv4 address */
557 address[0], address[1], address[2], address[3]);
560 /* The first octet of the address field contains the number of octets
562 fprintf(dump, " %.*s\n", len-1, &address[1]);
565 /* 16 bytes IPv6 address */
567 fprintf(dump, " %02x", address[i]);
612 response[SOCKS5_ATYP] = type; /* address type */
616 /* address or hostname */
617 memcpy(&response[SOCKS5_BNDADDR], address, len);