| Index: net/tools/quic/quic_packet_reader.cc
|
| diff --git a/net/tools/quic/quic_packet_reader.cc b/net/tools/quic/quic_packet_reader.cc
|
| index 21cffdcdf1f64ae4945a3d2851d9350564f9d7a0..a6d325e5737822b4c3088e0e71042604dad5f186 100644
|
| --- a/net/tools/quic/quic_packet_reader.cc
|
| +++ b/net/tools/quic/quic_packet_reader.cc
|
| @@ -14,6 +14,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "net/base/ip_endpoint.h"
|
| +#include "net/quic/quic_bug_tracker.h"
|
| #include "net/quic/quic_flags.h"
|
| #include "net/tools/quic/quic_dispatcher.h"
|
| #include "net/tools/quic/quic_socket_utils.h"
|
| @@ -88,7 +89,7 @@ bool QuicPacketReader::ReadAndDispatchPackets(
|
| IPAddressNumber server_ip =
|
| QuicSocketUtils::GetAddressFromMsghdr(&mmsg_hdr_[i].msg_hdr);
|
| if (!IsInitializedAddress(server_ip)) {
|
| - LOG(DFATAL) << "Unable to get server address.";
|
| + QUIC_BUG << "Unable to get server address.";
|
| continue;
|
| }
|
|
|
|
|