69 lines
2.4 KiB
C
Raw Normal View History

2020-08-30 11:54:41 +02:00
#ifndef HEADER_CURL_QUIC_H
#define HEADER_CURL_QUIC_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2022-08-04 22:12:04 +02:00
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
2020-08-30 11:54:41 +02:00
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
2020-08-30 11:54:41 +02:00
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
2020-08-30 11:54:41 +02:00
***************************************************************************/
#include "curl_setup.h"
#ifdef ENABLE_QUIC
#ifdef USE_NGTCP2
#include "vquic/ngtcp2.h"
#endif
#ifdef USE_QUICHE
#include "vquic/quiche.h"
#endif
2022-08-04 22:12:04 +02:00
#ifdef USE_MSH3
#include "vquic/msh3.h"
#endif
2020-08-30 11:54:41 +02:00
#include "urldata.h"
/* functions provided by the specific backends */
2021-09-14 00:13:48 +02:00
CURLcode Curl_quic_connect(struct Curl_easy *data,
struct connectdata *conn,
2020-08-30 11:54:41 +02:00
curl_socket_t sockfd,
int sockindex,
const struct sockaddr *addr,
socklen_t addrlen);
2021-09-14 00:13:48 +02:00
CURLcode Curl_quic_is_connected(struct Curl_easy *data,
struct connectdata *conn,
int sockindex,
2020-08-30 11:54:41 +02:00
bool *connected);
2021-11-20 13:41:27 +01:00
void Curl_quic_ver(char *p, size_t len);
2021-09-14 00:13:48 +02:00
CURLcode Curl_quic_done_sending(struct Curl_easy *data);
2020-08-30 11:54:41 +02:00
void Curl_quic_done(struct Curl_easy *data, bool premature);
bool Curl_quic_data_pending(const struct Curl_easy *data);
2021-09-14 00:13:48 +02:00
void Curl_quic_disconnect(struct Curl_easy *data,
struct connectdata *conn, int tempindex);
2022-11-16 20:14:03 +01:00
CURLcode Curl_quic_idle(struct Curl_easy *data);
2020-08-30 11:54:41 +02:00
#else /* ENABLE_QUIC */
#define Curl_quic_done_sending(x)
#define Curl_quic_done(x,y)
#define Curl_quic_data_pending(x)
2021-09-14 00:13:48 +02:00
#define Curl_quic_disconnect(x,y,z)
2020-08-30 11:54:41 +02:00
#endif /* !ENABLE_QUIC */
#endif /* HEADER_CURL_QUIC_H */