| Index: content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h
|
| diff --git a/content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h b/content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h
|
| index aea6fa4f74627a1a37aa04d26cc7ea950737900a..352e7ec8b76610b2c5fd7748833483e389d294ef 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h
|
| +++ b/content/browser/renderer_host/pepper/pepper_udp_socket_message_filter.h
|
| @@ -60,7 +60,12 @@ class CONTENT_EXPORT PepperUDPSocketMessageFilter
|
| SOCKET_OPTION_ADDRESS_REUSE = 1 << 0,
|
| SOCKET_OPTION_BROADCAST = 1 << 1,
|
| SOCKET_OPTION_RCVBUF_SIZE = 1 << 2,
|
| - SOCKET_OPTION_SNDBUF_SIZE = 1 << 3
|
| + SOCKET_OPTION_SNDBUF_SIZE = 1 << 3,
|
| + SOCKET_OPTION_MULTICAST_LOOP = 1 << 4,
|
| + SOCKET_OPTION_MULTICAST_TTL = 1 << 5,
|
| + SOCKET_OPTION_MULTICAST_IF = 1 << 6,
|
| + SOCKET_OPTION_MULTICAST_JOIN = 1 << 7,
|
| + SOCKET_OPTION_MULTICAST_LEAVE = 1 << 8
|
| };
|
|
|
| // ppapi::host::ResourceMessageFilter overrides.
|
| @@ -118,6 +123,10 @@ class CONTENT_EXPORT PepperUDPSocketMessageFilter
|
| int32_t rcvbuf_size_;
|
| int32_t sndbuf_size_;
|
|
|
| + // Multicast options
|
| + uint32 multicast_if_;
|
| + int multicast_ttl_;
|
| +
|
| scoped_ptr<net::UDPSocket> socket_;
|
| bool closed_;
|
|
|
|
|