blob: cdcd3213e203e803f502bb84970d0716bba7a3b5 [file] [log] [blame]
deadbeefd1c09982017-01-18 15:16:37 -08001/*
2 * Copyright 2017 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
deadbeefe814a0d2017-02-25 18:15:09 -080011#ifndef WEBRTC_API_ORTC_UDPTRANSPORTINTERFACE_H_
12#define WEBRTC_API_ORTC_UDPTRANSPORTINTERFACE_H_
deadbeefd1c09982017-01-18 15:16:37 -080013
deadbeefe814a0d2017-02-25 18:15:09 -080014#include "webrtc/api/ortc/packettransportinterface.h"
deadbeefd1c09982017-01-18 15:16:37 -080015#include "webrtc/api/proxy.h"
Edward Lemurc20978e2017-07-06 19:44:34 +020016#include "webrtc/rtc_base/socketaddress.h"
deadbeefd1c09982017-01-18 15:16:37 -080017
18namespace webrtc {
19
20// Interface for a raw UDP transport (not using ICE), meaning a combination of
21// a local/remote IP address/port.
22//
23// An instance can be instantiated using OrtcFactory.
24//
25// Each instance reserves a UDP port, which will be freed when the
26// UdpTransportInterface destructor is called.
27//
28// Calling SetRemoteAddress sets the destination of outgoing packets; without a
29// destination, packets can't be sent, but they can be received.
deadbeef225bfc02017-04-06 21:47:33 -070030class UdpTransportInterface : public virtual PacketTransportInterface {
deadbeefd1c09982017-01-18 15:16:37 -080031 public:
deadbeefd1c09982017-01-18 15:16:37 -080032 // Get the address of the socket allocated for this transport.
33 virtual rtc::SocketAddress GetLocalAddress() const = 0;
34
35 // Sets the address to which packets will be delivered.
36 //
37 // Calling with a "nil" (default-constructed) address is legal, and unsets
38 // any previously set destination.
39 //
40 // However, calling with an incomplete address (port or IP not set) will
41 // fail.
42 virtual bool SetRemoteAddress(const rtc::SocketAddress& dest) = 0;
43 // Simple getter. If never set, returns nil address.
44 virtual rtc::SocketAddress GetRemoteAddress() const = 0;
45};
46
deadbeefd1c09982017-01-18 15:16:37 -080047} // namespace webrtc
48
deadbeefe814a0d2017-02-25 18:15:09 -080049#endif // WEBRTC_API_ORTC_UDPTRANSPORTINTERFACE_H_