Index: net/udp/datagram_server_socket.h |
=================================================================== |
--- net/udp/datagram_server_socket.h (revision 146925) |
+++ net/udp/datagram_server_socket.h (working copy) |
@@ -60,12 +60,12 @@ |
// Set the send buffer size (in bytes) for the socket. |
virtual bool SetSendBufferSize(int32 size) = 0; |
- // Allow the socket to share the local address to which socket will |
+ // Allow the socket to share the local address to which the socket will |
// be bound with other processes. Should be called before Listen(). |
virtual void AllowAddressReuse() = 0; |
- // Allow sending and receiving packets sent to and from broadcast |
wtc
2012/07/17 00:05:15
This "sent" seems extraneous, so I think it can be
|
- // addresses. Should be called before Listen(). |
+ // Allow sending and receiving packets to and from broadcast addresses. |
+ // Should be called before Listen(). |
virtual void AllowBroadcast() = 0; |
}; |