Paraslash Audio Streaming | |
About News Download Documentation Development |
Describes the current status of one paraslash sender. More...
#include <send.h>
Data Fields | |
unsigned | num_listen_fds |
Number of sockets to listen on, size of the two arrays below. More... | |
char ** | listen_addresses |
Derived from –http-listen-address and –dccp-listen-address. More... | |
int | default_port |
Default TCP/DCCP port number for addresses w/o port. More... | |
int * | listen_fds |
The socket fd(s) this sender is listening on. More... | |
int | num_clients |
The current number of simultaneous connections. More... | |
int | max_clients |
The maximal number of simultaneous connections. More... | |
int | default_deny |
Whether the access control list is a whitelist. More... | |
struct list_head | acl |
The whitelist/blacklist. More... | |
struct list_head | client_list |
The list of connected clients. More... | |
Describes the current status of one paraslash sender.
unsigned num_listen_fds |
Number of sockets to listen on, size of the two arrays below.
Referenced by init_sender_status().
char** listen_addresses |
Derived from –http-listen-address and –dccp-listen-address.
Referenced by free_sender_status(), generic_com_on(), generic_sender_status(), and init_sender_status().
int default_port |
Default TCP/DCCP port number for addresses w/o port.
Referenced by generic_com_on(), generic_sender_status(), and init_sender_status().
int* listen_fds |
The socket fd(s) this sender is listening on.
Referenced by accept_sender_client(), free_sender_status(), generic_com_off(), generic_com_on(), generic_sender_status(), and init_sender_status().
int num_clients |
The current number of simultaneous connections.
Referenced by accept_sender_client(), and generic_sender_status().
int max_clients |
The maximal number of simultaneous connections.
Referenced by accept_sender_client(), and generic_sender_status().
int default_deny |
Whether the access control list is a whitelist.
Referenced by accept_sender_client(), generic_com_allow(), generic_com_deny(), and generic_sender_status().
struct list_head acl |
The whitelist/blacklist.
Referenced by accept_sender_client(), generic_com_allow(), generic_com_deny(), and generic_sender_status().
struct list_head client_list |
The list of connected clients.
Referenced by generic_sender_status(), and shutdown_clients().