mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-01-14 02:01:39 +00:00
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/*
|
|
* Copyright (c) 2015 Tim Ruehsen
|
|
* Copyright (c) 2015-2024 Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of libwget.
|
|
*
|
|
* Libwget is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Libwget is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Libwget. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
* Header file for private net structures
|
|
*
|
|
* Changelog
|
|
* 23.02.2015 Tim Ruehsen
|
|
*
|
|
*/
|
|
|
|
#ifndef LIBWGET_NET_H
|
|
# define LIBWGET_NET_H
|
|
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
|
|
struct wget_tcp_st {
|
|
void *
|
|
ssl_session;
|
|
struct addrinfo *
|
|
addrinfo;
|
|
struct addrinfo *
|
|
bind_addrinfo;
|
|
struct addrinfo *
|
|
connect_addrinfo; // needed for TCP_FASTOPEN delayed connect
|
|
const char
|
|
*host,
|
|
*ssl_hostname, // if set, do SSL hostname checking
|
|
*ip,
|
|
*bind_interface;
|
|
wget_dns
|
|
*dns;
|
|
int
|
|
sockfd,
|
|
// timeouts in milliseconds
|
|
// there is no real 'connect timeout', since connects are async
|
|
dns_timeout,
|
|
connect_timeout,
|
|
timeout, // read and write timeouts are the same
|
|
family,
|
|
preferred_family,
|
|
protocol; // WGET_PROTOCOL_HTTP1_1, WGET_PROTOCOL_HTTP2_0
|
|
wget_hpkp_stats_result
|
|
hpkp; // hpkp stats
|
|
uint16_t
|
|
remote_port; // needed for not yet connected situations (e.g. DANE)
|
|
bool
|
|
ssl : 1,
|
|
tls_false_start : 1,
|
|
tcp_fastopen : 1, // do we use TCP_FASTOPEN or not
|
|
first_send : 1; // TCP_FASTOPEN's first packet is sent different
|
|
};
|
|
|
|
#endif /* LIBWGET_NET_H */
|