| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 REMOTING_JINGLE_GLUE_NETWORK_SETTINGS_H_ | 5 #ifndef REMOTING_JINGLE_GLUE_NETWORK_SETTINGS_H_ |
| 6 #define REMOTING_JINGLE_GLUE_NETWORK_SETTINGS_H_ | 6 #define REMOTING_JINGLE_GLUE_NETWORK_SETTINGS_H_ |
| 7 | 7 |
| 8 namespace remoting { | 8 namespace remoting { |
| 9 | 9 |
| 10 struct NetworkSettings { | 10 struct NetworkSettings { |
| 11 | 11 |
| 12 // When hosts are configured with NAT traversal disabled they will | 12 // When hosts are configured with NAT traversal disabled they will |
| 13 // typically also limit their P2P ports to this range, so that | 13 // typically also limit their P2P ports to this range, so that |
| 14 // sessions may be blocked or un-blocked via firewall rules. | 14 // sessions may be blocked or un-blocked via firewall rules. |
| 15 static const int kDefaultMinPort = 12400; | 15 static const int kDefaultMinPort = 12400; |
| 16 static const int kDefaultMaxPort = 12409; | 16 static const int kDefaultMaxPort = 12409; |
| 17 | 17 |
| 18 enum NatTraversalMode { | 18 enum NatTraversalMode { |
| 19 // Active NAT traversal using STUN and relay servers. | 19 // Active NAT traversal using STUN and relay servers. |
| 20 NAT_TRAVERSAL_ENABLED, | 20 NAT_TRAVERSAL_ENABLED, |
| 21 | 21 |
| 22 // Active NAT traversal using STUN, but don't use relay servers. |
| 23 NAT_TRAVERSAL_ENABLED_NO_RELAY, |
| 24 |
| 22 // Don't use STUN or relay servers. Accept incoming P2P connection | 25 // Don't use STUN or relay servers. Accept incoming P2P connection |
| 23 // attempts, but don't initiate any. This ensures that the peer is | 26 // attempts, but don't initiate any. This ensures that the peer is |
| 24 // on the same network. Note that connection will always fail if | 27 // on the same network. Note that connection will always fail if |
| 25 // both ends use this mode. | 28 // both ends use this mode. |
| 26 NAT_TRAVERSAL_DISABLED, | 29 NAT_TRAVERSAL_DISABLED, |
| 27 | 30 |
| 28 // Don't use STUN or relay servers but make outgoing connections. | 31 // Don't use STUN or relay servers but make outgoing connections. |
| 29 NAT_TRAVERSAL_OUTGOING, | 32 NAT_TRAVERSAL_OUTGOING, |
| 30 }; | 33 }; |
| 31 | 34 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 45 | 48 |
| 46 // |min_port| and |max_port| specify range (inclusive) of ports used by | 49 // |min_port| and |max_port| specify range (inclusive) of ports used by |
| 47 // P2P sessions. Any port can be used when both values are set to 0. | 50 // P2P sessions. Any port can be used when both values are set to 0. |
| 48 int min_port; | 51 int min_port; |
| 49 int max_port; | 52 int max_port; |
| 50 }; | 53 }; |
| 51 | 54 |
| 52 } // namespace remoting | 55 } // namespace remoting |
| 53 | 56 |
| 54 #endif // REMOTING_HOST_NETWORK_SETTINGS_H_ | 57 #endif // REMOTING_HOST_NETWORK_SETTINGS_H_ |
| OLD | NEW |