blob: 1126f628fe23c842b14ce304c1555b733478f9a5 [file] [log] [blame]
aleloia8eb7562016-11-28 07:02:13 -08001/*
2 * Copyright (c) 2013 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#ifndef WEBRTC_API_CALL_TRANSPORT_H_
12#define WEBRTC_API_CALL_TRANSPORT_H_
13
14#include <stddef.h>
15#include <stdint.h>
16
17namespace webrtc {
18
19// TODO(holmer): Look into unifying this with the PacketOptions in
20// asyncpacketsocket.h.
21struct PacketOptions {
22 // A 16 bits positive id. Negative ids are invalid and should be interpreted
23 // as packet_id not being set.
24 int packet_id = -1;
25};
26
27class Transport {
28 public:
29 virtual bool SendRtp(const uint8_t* packet,
30 size_t length,
31 const PacketOptions& options) = 0;
32 virtual bool SendRtcp(const uint8_t* packet, size_t length) = 0;
33
34 protected:
35 virtual ~Transport() {}
36};
37
38} // namespace webrtc
39
40#endif // WEBRTC_API_CALL_TRANSPORT_H_