chromium/remoting/protocol/transport.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_PROTOCOL_TRANSPORT_H_
#define REMOTING_PROTOCOL_TRANSPORT_H_

#include <memory>
#include <string>

#include "base/functional/callback_forward.h"
#include "net/base/ip_endpoint.h"
#include "remoting/protocol/errors.h"

namespace jingle_xmpp {
class XmlElement;
}  // namespace jingle_xmpp

namespace remoting::protocol {

class Authenticator;

enum class TransportRole {};

struct TransportRoute {};

// Transport represents a P2P connection that consists of one or more channels.
// This interface is used just to send and receive transport-info messages.
// Implementations should provide other methods to send and receive data.
class Transport {};

}  // namespace remoting::protocol

#endif  // REMOTING_PROTOCOL_TRANSPORT_H_