Home | History | Annotate | Download | only in shill

Lines Matching full:address

94     "assigned the same IP address.";
115 "We can find a route to the target web server at a remote IP address, "
393 << ": could not parse DNS server IP address from string";
435 void ConnectionDiagnostics::FindRouteToHost(const IPAddress& address) {
442 address, connection_->interface_index(), -1,
446 << address.ToString();
449 address.ToString().c_str()));
463 StringPrintf("Requesting route to %s", address.ToString().c_str()));
466 void ConnectionDiagnostics::FindArpTableEntry(const IPAddress& address) {
469 if (address.family() != IPAddress::kFamilyIPv4) {
471 LOG(ERROR) << __func__ << ": " << address.ToString()
472 << " is not an IPv4 address";
475 StringPrintf("%s is not an IPv4 address", address.ToString().c_str()));
482 address.ToString().c_str()));
484 if (device_info_->GetMACAddressOfPeer(connection_->interface_index(), address,
488 address.ToString().c_str()));
489 ReportResultAndStop(address.Equals(connection_->gateway())
497 address.ToString().c_str()));
502 void ConnectionDiagnostics::FindNeighborTableEntry(const IPAddress& address) {
505 if (address.family() != IPAddress::kFamilyIPv6) {
507 LOG(ERROR) << __func__ << ": " << address.ToString()
508 << " is not an IPv6 address";
511 StringPrintf("%s is not an IPv6 address", address.ToString().c_str()));
519 weak_ptr_factory_.GetWeakPtr(), address)));
524 weak_ptr_factory_.GetWeakPtr(), address));
529 address.ToString().c_str()));
537 LOG(ERROR) << __func__ << ": could not get local MAC address";
539 "Could not get local MAC address");
577 void ConnectionDiagnostics::PingHost(const IPAddress& address) {
580 Type event_type = address.Equals(connection_->gateway())
584 address, Bind(&ConnectionDiagnostics::OnPingHostComplete,
585 weak_ptr_factory_.GetWeakPtr(), event_type, address))) {
587 << address.ToString();
590 address.ToString().c_str()));
596 StringPrintf("Pinging %s", address.ToString().c_str()));
629 LOG(ERROR) << __func__ << ": could not parse DNS server IP address "
633 "server IP address %s",
668 const IPAddress& address) {
674 StringPrintf("Target address is %s", address.ToString().c_str()));
676 weak_ptr_factory_.GetWeakPtr(), address));
751 if (!connection_->local().address().Equals(
752 packet.remote_ip_address().address())) {
753 SLOG(this, 4) << __func__ << ": response is not for our IP address.";
758 SLOG(this, 4) << __func__ << ": response is not for our MAC address.";
762 if (connection_->local().address().Equals(
763 packet.local_ip_address().address())) {
801 IPAddress address(msg.family(), msg.GetAttribute(NDA_DST));
802 if (!address.Equals(address_queried)) {
803 SLOG(this, 4) << __func__ << ": destination address (" << address
804 << ") does not match address queried ("