/* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2000-2004, Jack Moffitt , * oddsock , * Karl Heyes * and others (see AUTHORS for details). * Copyright 2014, Philipp "ph3-der-loewe" Schafft , */ #ifndef __CONNECTION_H__ #define __CONNECTION_H__ #include #include #ifdef HAVE_OPENSSL #include #include #endif #include "compat.h" #include "httpp/httpp.h" #include "thread/thread.h" #include "net/sock.h" struct _client_tag; struct source_tag; struct ice_config_tag; typedef struct connection_tag { unsigned long id; time_t con_time; time_t discon_time; uint64_t sent_bytes; sock_t sock; sock_t serversock; int error; #ifdef HAVE_OPENSSL SSL *ssl; /* SSL handler */ #endif int (*send)(struct connection_tag *handle, const void *buf, size_t len); int (*read)(struct connection_tag *handle, void *buf, size_t len); char *ip; char *host; } connection_t; void connection_initialize(void); void connection_shutdown(void); void connection_accept_loop(void); int connection_setup_sockets (struct ice_config_tag *config); void connection_close(connection_t *con); connection_t *connection_create (sock_t sock, sock_t serversock, char *ip); int connection_complete_source (struct source_tag *source, int response); extern rwlock_t _source_shutdown_rwlock; #endif /* __CONNECTION_H__ */