Home | History | Annotate | Download | only in net

Lines Matching full:address

54 IPAddress::IPAddress(Family family, const ByteString& address)
56 address_(address),
60 const ByteString& address,
63 address_(address),
137 LOG(ERROR) << "Invalid IPv4 address class";
157 LOG(WARNING) << "Unexpected address family: " << family;
178 // We are guaranteed to be before the end of the address data since even
205 ByteString address(address_length);
206 if (inet_pton(family_, address_string.c_str(), address.GetData()) <= 0) {
209 address_ = address;
217 LOG(ERROR) << "Cannot split address " << address_string;
221 LOG(ERROR) << "Cannot parse address string " << address_parts[0];
227 LOG(ERROR) << "Cannot parse address prefix " << address_parts[1];
286 ByteString address_bytes(address());
287 address_bytes.BitwiseAnd(b.address());
297 ByteString address_bytes(address());
298 address_bytes.BitwiseOr(b.address());
309 GetAddressMaskFromPrefix(family(), prefix()).address());