mirror of https://github.com/libp2p/cpp-libp2p.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
510 B
22 lines
510 B
/**
|
|
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef LIBP2P_RAW_CONNECTION_HPP
|
|
#define LIBP2P_RAW_CONNECTION_HPP
|
|
|
|
#include <libp2p/connection/layer_connection.hpp>
|
|
|
|
namespace libp2p::connection {
|
|
|
|
/**
|
|
* @bried Represents raw network connection, before any upgrade
|
|
*/
|
|
struct RawConnection : public virtual LayerConnection {
|
|
~RawConnection() override = default;
|
|
};
|
|
|
|
} // namespace libp2p::connection
|
|
|
|
#endif // LIBP2P_RAW_CONNECTION_HPP
|
|
|