mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
55 lines
1.6 KiB
C
55 lines
1.6 KiB
C
/* Copyright (c) 2017 - 2019 LiteSpeed Technologies Inc. See LICENSE. */
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "lsquic.h"
|
|
#include "lsquic_int_types.h"
|
|
#include "lsquic_conn.h"
|
|
|
|
#include "lsquic_qlog.h"
|
|
|
|
#define LSQUIC_LOGGER_MODULE LSQLM_NOMODULE
|
|
#include "lsquic_logger.h"
|
|
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
lsquic_global_init(LSQUIC_GLOBAL_CLIENT | LSQUIC_GLOBAL_CLIENT);
|
|
lsquic_log_to_fstream(stderr, LLTS_HHMMSSMS);
|
|
lsquic_set_log_level("debug");
|
|
|
|
lsquic_qlog_create_connection(0, NULL, NULL);
|
|
struct in_addr local_addr = {.s_addr = htonl(0x0a000001),};
|
|
struct sockaddr_in local =
|
|
{
|
|
.sin_family = AF_INET,
|
|
.sin_port = htons(12345),
|
|
.sin_addr = local_addr,
|
|
};
|
|
struct in_addr peer_addr = {.s_addr = htonl(0x0a000002),};
|
|
struct sockaddr_in peer =
|
|
{
|
|
.sin_family = AF_INET,
|
|
.sin_port = htons(443),
|
|
.sin_addr = peer_addr,
|
|
};
|
|
lsquic_qlog_create_connection(0, (const struct sockaddr *)&local,
|
|
(const struct sockaddr *)&peer);
|
|
|
|
lsquic_qlog_packet_rx(0, NULL, NULL, 0);
|
|
lsquic_qlog_hsk_completed(0);
|
|
lsquic_qlog_zero_rtt(0);
|
|
lsquic_qlog_check_certs(0, NULL, 0);
|
|
|
|
lsquic_qlog_version_negotiation(0, NULL, NULL);
|
|
lsquic_qlog_version_negotiation(0, "proposed", NULL);
|
|
lsquic_qlog_version_negotiation(0, "proposed", "Q035");
|
|
lsquic_qlog_version_negotiation(0, "proposed", "Q046");
|
|
lsquic_qlog_version_negotiation(0, "agreed", "Q044");
|
|
lsquic_qlog_version_negotiation(0, "agreed", "Q098");
|
|
lsquic_qlog_version_negotiation(0, "something else", "Q098");
|
|
return 0;
|
|
}
|