blob: 1dcb1d516bdb0edf06fa18141324bc45537dc572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "webkit/glue/p2p_transport.h"
namespace webkit_glue {
P2PTransport::Config::Config()
: stun_server_port(0),
relay_server_port(0),
legacy_relay(false),
tcp_receive_window(0),
tcp_send_window(0),
tcp_no_delay(false),
tcp_ack_delay_ms(0),
disable_tcp_transport(false) {
}
P2PTransport::Config::~Config() {
}
} // namespace webkit_glue
|