OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ |
6 #define CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ | 6 #define CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 namespace content { | 10 namespace content { |
11 | 11 |
12 // This module provides helper types for checking socket permission. | 12 // This module provides helper types for checking socket permission. |
13 | 13 |
14 struct SocketPermissionRequest { | 14 struct SocketPermissionRequest { |
15 enum OperationType { | 15 enum OperationType { |
16 NONE = 0, | 16 NONE = 0, |
17 TCP_CONNECT, | 17 TCP_CONNECT, |
18 TCP_LISTEN, | 18 TCP_LISTEN, |
19 UDP_BIND, | 19 UDP_BIND, |
20 UDP_SEND_TO, | 20 UDP_SEND_TO, |
| 21 UDP_MULTICAST_MEMBERSHIP |
21 }; | 22 }; |
22 | 23 |
23 SocketPermissionRequest(OperationType type, | 24 SocketPermissionRequest(OperationType type, |
24 const std::string& host, | 25 const std::string& host, |
25 int port) | 26 int port) |
26 : type(type), | 27 : type(type), |
27 host(host), | 28 host(host), |
28 port(port) { | 29 port(port) { |
29 } | 30 } |
30 | 31 |
31 OperationType type; | 32 OperationType type; |
32 std::string host; | 33 std::string host; |
33 int port; | 34 int port; |
34 }; | 35 }; |
35 | 36 |
36 } // namespace content | 37 } // namespace content |
37 | 38 |
38 #endif // CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ | 39 #endif // CONTENT_PUBLIC_COMMON_SOCKET_PERMISSION_REQUEST_H_ |
OLD | NEW |