1234567891011121314151617181920212223242526272829303132 |
- #ifndef MEDIA_BASE_TURN_UTILS_H_
- #define MEDIA_BASE_TURN_UTILS_H_
- #include <cstddef>
- #include <cstdint>
- #include "rtc_base/system/rtc_export.h"
- namespace cricket {
- struct PacketOptions;
- bool RTC_EXPORT UnwrapTurnPacket(const uint8_t* packet,
- size_t packet_size,
- size_t* content_position,
- size_t* content_size);
- }
- #endif
|