OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 | 905 |
906 // RTCP mode to use. Compound mode is described by RFC 4585 and reduced-size | 906 // RTCP mode to use. Compound mode is described by RFC 4585 and reduced-size |
907 // RTCP mode is described by RFC 5506. | 907 // RTCP mode is described by RFC 5506. |
908 enum class RtcpMode { kOff, kCompound, kReducedSize }; | 908 enum class RtcpMode { kOff, kCompound, kReducedSize }; |
909 | 909 |
910 enum NetworkState { | 910 enum NetworkState { |
911 kNetworkUp, | 911 kNetworkUp, |
912 kNetworkDown, | 912 kNetworkDown, |
913 }; | 913 }; |
914 | 914 |
915 struct RtpKeepAliveConfig { | 915 struct RtpKeepAliveConfig final { |
916 // If no packet has been sent for |timeout_interval_ms|, send a keep-alive | 916 // If no packet has been sent for |timeout_interval_ms|, send a keep-alive |
917 // packet. The keep-alive packet is an empty (no payload) RTP packet with a | 917 // packet. The keep-alive packet is an empty (no payload) RTP packet with a |
918 // payload type of 20 as long as the other end has not negotiated the use of | 918 // payload type of 20 as long as the other end has not negotiated the use of |
919 // this value. If this value has already been negotiated, then some other | 919 // this value. If this value has already been negotiated, then some other |
920 // unused static payload type from table 5 of RFC 3551 shall be used and set | 920 // unused static payload type from table 5 of RFC 3551 shall be used and set |
921 // in |payload_type|. | 921 // in |payload_type|. |
922 int64_t timeout_interval_ms = -1; | 922 int64_t timeout_interval_ms = -1; |
923 uint8_t payload_type = 20; | 923 uint8_t payload_type = 20; |
| 924 |
| 925 bool operator==(const RtpKeepAliveConfig& o) const { |
| 926 return timeout_interval_ms == o.timeout_interval_ms && |
| 927 payload_type == o.payload_type; |
| 928 } |
| 929 bool operator!=(const RtpKeepAliveConfig& o) const { return !(*this == o); } |
924 }; | 930 }; |
925 | 931 |
926 } // namespace webrtc | 932 } // namespace webrtc |
927 | 933 |
928 #endif // WEBRTC_COMMON_TYPES_H_ | 934 #endif // WEBRTC_COMMON_TYPES_H_ |
OLD | NEW |