Index: net/udp/udp_socket_libevent.h |
diff --git a/net/udp/udp_socket_libevent.h b/net/udp/udp_socket_libevent.h |
index 8ec5c212c094cca3a670c7117ac1040c839454df..f0e2d5f48ae04da52df1671cd469b56a650ec1bf 100644 |
--- a/net/udp/udp_socket_libevent.h |
+++ b/net/udp/udp_socket_libevent.h |
@@ -168,8 +168,8 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe { |
private: |
enum SocketOptions { |
- SOCKET_OPTION_REUSE_ADDRESS = 1 << 0, |
- SOCKET_OPTION_BROADCAST = 1 << 1, |
+ SOCKET_OPTION_REUSE_ADDRESS = 1 << 0, |
+ SOCKET_OPTION_BROADCAST = 1 << 1, |
SOCKET_OPTION_MULTICAST_LOOP = 1 << 2 |
}; |
@@ -214,7 +214,9 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe { |
// success, or the net error code on failure. On success, LogRead takes in a |
// sockaddr and its length, which are mandatory, while LogWrite takes in an |
// optional IPEndPoint. |
- void LogRead(int result, const char* bytes, socklen_t addr_len, |
+ void LogRead(int result, |
+ const char* bytes, |
+ socklen_t addr_len, |
const sockaddr* addr) const; |
void LogWrite(int result, const char* bytes, const IPEndPoint* address) const; |