remove unused members from struct server_socket

From: Stefan Bühler <stbuehler@web.de>

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2912 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Stefan Bühler 2013-11-05 15:29:04 +00:00
parent 268c054c40
commit 3ce548c8d0
2 changed files with 0 additions and 9 deletions

View File

@ -530,14 +530,6 @@ typedef struct server_socket {
int fd;
int fde_ndx;
buffer *ssl_pemfile;
buffer *ssl_ca_file;
buffer *ssl_cipher_list;
buffer *ssl_dh_file;
buffer *ssl_ec_curve;
unsigned short ssl_use_sslv2;
unsigned short ssl_use_sslv3;
unsigned short use_ipv6;
unsigned short is_ssl;
buffer *srv_token;

View File

@ -224,7 +224,6 @@ static int network_server_init(server *srv, buffer *host_token, specific_config
log_error_write(srv, __FILE__, __LINE__, "ss", "socket failed:", strerror(errno));
goto error_free_socket;
}
srv_socket->use_ipv6 = 1;
}
#endif