1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_PROTOCOL_NETWORK_SETTINGS_H_
6 #define REMOTING_PROTOCOL_NETWORK_SETTINGS_H_
10 #include "base/basictypes.h"
11 #include "base/logging.h"
16 struct NetworkSettings
{
18 // When hosts are configured with NAT traversal disabled they will
19 // typically also limit their P2P ports to this range, so that
20 // sessions may be blocked or un-blocked via firewall rules.
21 static const int kDefaultMinPort
= 12400;
22 static const int kDefaultMaxPort
= 12409;
25 // Don't use STUN or relay servers. Accept incoming P2P connection
26 // attempts, but don't initiate any. This ensures that the peer is
27 // on the same network. Note that connection will always fail if
28 // both ends use this mode.
29 NAT_TRAVERSAL_DISABLED
= 0x0,
31 // Allow outgoing connections, even when STUN and RELAY are not enabled.
32 NAT_TRAVERSAL_OUTGOING
= 0x1,
34 // Active NAT traversal using STUN.
35 NAT_TRAVERSAL_STUN
= 0x2,
37 // Allow the use of relay servers when a direct connection is not available.
38 NAT_TRAVERSAL_RELAY
= 0x4,
40 // Active NAT traversal using STUN and relay servers.
41 NAT_TRAVERSAL_FULL
= NAT_TRAVERSAL_STUN
| NAT_TRAVERSAL_RELAY
|
42 NAT_TRAVERSAL_OUTGOING
46 : flags(NAT_TRAVERSAL_DISABLED
),
49 DCHECK(!(flags
& (NAT_TRAVERSAL_STUN
| NAT_TRAVERSAL_RELAY
)) ||
50 (flags
& NAT_TRAVERSAL_OUTGOING
));
53 explicit NetworkSettings(uint32 flags
)
59 // Parse string in the form "<min_port>-<max_port>". E.g. "12400-12409".
60 // Returns true if string was parsed successfuly.
61 static bool ParsePortRange(const std::string
& port_range
,
67 // |min_port| and |max_port| specify range (inclusive) of ports used by
68 // P2P sessions. Any port can be used when both values are set to 0.
73 } // namespace protocol
74 } // namespace remoting
76 #endif // REMOTING_HOST_NETWORK_SETTINGS_H_