Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: webrtc/p2p/base/constants.h

Issue 1303393002: Reland "Remove GICE (gone forever!) and PORTALLOCATOR_ENABLE_SHARED_UFRAG (enabled forever)." becau… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add memcheck suppression Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/p2p/base/candidate.h ('k') | webrtc/p2p/base/constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 10 matching lines...) Expand all
21 // Jingle call, the content name can be anything, so don't rely on 21 // Jingle call, the content name can be anything, so don't rely on
22 // these values being the same as the ones received. 22 // these values being the same as the ones received.
23 extern const char CN_AUDIO[]; 23 extern const char CN_AUDIO[];
24 extern const char CN_VIDEO[]; 24 extern const char CN_VIDEO[];
25 extern const char CN_DATA[]; 25 extern const char CN_DATA[];
26 extern const char CN_OTHER[]; 26 extern const char CN_OTHER[];
27 27
28 // GN stands for group name 28 // GN stands for group name
29 extern const char GROUP_TYPE_BUNDLE[]; 29 extern const char GROUP_TYPE_BUNDLE[];
30 30
31 extern const char NS_JINGLE_ICE_UDP[];
32 extern const char NS_GINGLE_P2P[];
33 extern const char NS_GINGLE_RAW[];
34
35 extern const char ICE_OPTION_GICE[];
36
37 extern const int ICE_UFRAG_LENGTH; 31 extern const int ICE_UFRAG_LENGTH;
38 extern const int ICE_PWD_LENGTH; 32 extern const int ICE_PWD_LENGTH;
39 extern const size_t ICE_UFRAG_MIN_LENGTH; 33 extern const size_t ICE_UFRAG_MIN_LENGTH;
40 extern const size_t ICE_PWD_MIN_LENGTH; 34 extern const size_t ICE_PWD_MIN_LENGTH;
41 extern const size_t ICE_UFRAG_MAX_LENGTH; 35 extern const size_t ICE_UFRAG_MAX_LENGTH;
42 extern const size_t ICE_PWD_MAX_LENGTH; 36 extern const size_t ICE_PWD_MAX_LENGTH;
43 extern const size_t GICE_UFRAG_MAX_LENGTH;
44 37
45 extern const int ICE_CANDIDATE_COMPONENT_RTP; 38 extern const int ICE_CANDIDATE_COMPONENT_RTP;
46 extern const int ICE_CANDIDATE_COMPONENT_RTCP; 39 extern const int ICE_CANDIDATE_COMPONENT_RTCP;
47 extern const int ICE_CANDIDATE_COMPONENT_DEFAULT; 40 extern const int ICE_CANDIDATE_COMPONENT_DEFAULT;
48 41
49 extern const char NS_JINGLE_RTP[]; 42 extern const char NS_JINGLE_RTP[];
50 extern const char NS_JINGLE_DRAFT_SCTP[]; 43 extern const char NS_JINGLE_DRAFT_SCTP[];
51 44
52 extern const char GICE_CHANNEL_NAME_RTP[];
53 extern const char GICE_CHANNEL_NAME_RTCP[];
54 extern const char GICE_CHANNEL_NAME_VIDEO_RTP[];
55 extern const char GICE_CHANNEL_NAME_VIDEO_RTCP[];
56 extern const char GICE_CHANNEL_NAME_DATA_RTP[];
57 extern const char GICE_CHANNEL_NAME_DATA_RTCP[];
58
59 // RFC 4145, SDP setup attribute values. 45 // RFC 4145, SDP setup attribute values.
60 extern const char CONNECTIONROLE_ACTIVE_STR[]; 46 extern const char CONNECTIONROLE_ACTIVE_STR[];
61 extern const char CONNECTIONROLE_PASSIVE_STR[]; 47 extern const char CONNECTIONROLE_PASSIVE_STR[];
62 extern const char CONNECTIONROLE_ACTPASS_STR[]; 48 extern const char CONNECTIONROLE_ACTPASS_STR[];
63 extern const char CONNECTIONROLE_HOLDCONN_STR[]; 49 extern const char CONNECTIONROLE_HOLDCONN_STR[];
64 50
65 } // namespace cricket 51 } // namespace cricket
66 52
67 #endif // WEBRTC_P2P_BASE_CONSTANTS_H_ 53 #endif // WEBRTC_P2P_BASE_CONSTANTS_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/candidate.h ('k') | webrtc/p2p/base/constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698