blob: 7aa0651cea3ea559f4beb13b53b422d157f4ea2b [file] [log] [blame]
Sergey Ulanovdc305db2016-01-14 17:14:54 -08001/*
kjellander1afca732016-02-07 20:46:45 -08002 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
Sergey Ulanovdc305db2016-01-14 17:14:54 -08003 *
kjellander1afca732016-02-07 20:46:45 -08004 * 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.
Sergey Ulanovdc305db2016-01-14 17:14:54 -08009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MEDIA_BASE_TURNUTILS_H_
12#define MEDIA_BASE_TURNUTILS_H_
Sergey Ulanovdc305db2016-01-14 17:14:54 -080013
14#include <cstddef>
15#include <cstdint>
16
Mirko Bonadei3d255302018-10-11 10:50:45 +020017#include "rtc_base/system/rtc_export.h"
18
Sergey Ulanovdc305db2016-01-14 17:14:54 -080019namespace cricket {
20
21struct PacketOptions;
22
23// Finds data location within a TURN Channel Message or TURN Send Indication
24// message.
Mirko Bonadei3d255302018-10-11 10:50:45 +020025bool RTC_EXPORT UnwrapTurnPacket(const uint8_t* packet,
26 size_t packet_size,
27 size_t* content_position,
28 size_t* content_size);
Sergey Ulanovdc305db2016-01-14 17:14:54 -080029
30} // namespace cricket
31
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020032#endif // MEDIA_BASE_TURNUTILS_H_