search for: source_timeout

Displaying 2 results from an estimated 2 matches for "source_timeout".

2005 Mar 11
0
patch for icecast-2.2.0 to add client maxtime (fwd)
...;esiggi@gmail.com> Reply-To: siegfried@esiggi.net To: icecast-dev@xiph.org Subject: Re: [Icecast-dev] patch for icecast-2.2.0 to add client maxtime Hi, I did your recommended changes on my patch. But with the "signed/unsigned" mismatch: That's also wrong with other variables like source_timeout etc. And I've got a fundamental question: Why are you kicking clients that don't receive their data fast enough? Why not just throwing the data away rather than terminating the whole connection!? There would be missing parts or bad noises for the listener but at least he could still be lis...
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...; *************** *** 209,214 **** --- 216,223 ---- config = config_get_config(); queue_limit = config->queue_size_limit; + global_listener_time_limit = config->client_time_limit; + mount_listener_time_limit = source->max_listener_time; timeout = config->source_timeout; hostname = config->hostname; port = config->port; *************** *** 428,435 **** avl_node_wlock(client_node); client = (client_t *)client_node->key; ! data_done = 0; /* do we have any old buffers? */...