1 /*
2  *  Copyright 2004 The WebRTC Project Authors. All rights reserved.
3  *
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
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 #include "webrtc/p2p/base/p2pconstants.h"
12 
13 #include <string>
14 
15 namespace cricket {
16 
17 const char CN_AUDIO[] = "audio";
18 const char CN_VIDEO[] = "video";
19 const char CN_DATA[] = "data";
20 const char CN_OTHER[] = "main";
21 
22 const char GROUP_TYPE_BUNDLE[] = "BUNDLE";
23 
24 // Minimum ufrag length is 4 characters as per RFC5245.
25 const int ICE_UFRAG_LENGTH = 4;
26 // Minimum password length of 22 characters as per RFC5245. We chose 24 because
27 // some internal systems expect password to be multiple of 4.
28 const int ICE_PWD_LENGTH = 24;
29 const size_t ICE_UFRAG_MIN_LENGTH = 4;
30 const size_t ICE_PWD_MIN_LENGTH = 22;
31 const size_t ICE_UFRAG_MAX_LENGTH = 255;
32 const size_t ICE_PWD_MAX_LENGTH = 256;
33 
34 // This is media-specific, so might belong
35 // somewhere like media/base/mediaconstants.h
36 const int ICE_CANDIDATE_COMPONENT_RTP = 1;
37 const int ICE_CANDIDATE_COMPONENT_RTCP = 2;
38 const int ICE_CANDIDATE_COMPONENT_DEFAULT = 1;
39 
40 const char NS_JINGLE_RTP[] = "urn:xmpp:jingle:apps:rtp:1";
41 const char NS_JINGLE_DRAFT_SCTP[] = "google:jingle:sctp";
42 
43 // From RFC 4145, SDP setup attribute values.
44 const char CONNECTIONROLE_ACTIVE_STR[] = "active";
45 const char CONNECTIONROLE_PASSIVE_STR[] = "passive";
46 const char CONNECTIONROLE_ACTPASS_STR[] = "actpass";
47 const char CONNECTIONROLE_HOLDCONN_STR[] = "holdconn";
48 
49 }  // namespace cricket
50