Network System 0.1.1
High-performance modular networking library for scalable client-server applications
Loading...
Searching...
No Matches
quic_socket.h File Reference
#include <asio.hpp>
#include <functional>
#include <memory>
#include <vector>
#include <array>
#include <system_error>
#include <mutex>
#include <atomic>
#include <map>
#include <deque>
#include "internal/utils/common_defs.h"
#include "internal/protocols/quic/crypto.h"
#include "internal/protocols/quic/frame.h"
#include "internal/protocols/quic/packet.h"
#include "kcenon/network/detail/utils/result_types.h"
Include dependency graph for quic_socket.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  kcenon::network::internal::quic_socket
 A QUIC socket that wraps UDP and integrates QUIC packet protection. More...
 

Namespaces

namespace  kcenon
 
namespace  kcenon::network
 Main namespace for all Network System components.
 
namespace  kcenon::network::internal
 

Enumerations

enum class  kcenon::network::internal::quic_role : uint8_t { kcenon::network::internal::client = 0 , kcenon::network::internal::server = 1 }
 Role of the QUIC endpoint (client or server) More...
 
enum class  kcenon::network::internal::quic_connection_state : uint8_t {
  kcenon::network::internal::idle = 0 , kcenon::network::internal::handshake_start = 1 , kcenon::network::internal::handshake = 2 , kcenon::network::internal::connected = 3 ,
  kcenon::network::internal::closing = 4 , kcenon::network::internal::draining = 5 , kcenon::network::internal::closed = 6
}
 QUIC connection state machine states. More...