| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |