Displaying 5 results from an estimated 5 matches for "pending_tree".
2004 Aug 06
2
Stream metadata settings
...rc/source.c Fri Nov 14 17:51:59 2003
> +++ ./src/source.c Mon Dec 1 09:14:34 2003
> @@ -139,7 +192,6 @@
> #endif
>
> free(source->mount);
> - free(source->fallback_mount);
> client_destroy(source->client);
> avl_tree_free(source->pending_tree, _free_client);
> avl_tree_free(source->client_tree, _free_client);
>
>
> This is the patch and without it, anything using fallbacks will fail
> miserably. It is the prerequisite for almost all other patches, because
> this bug is a showstopper. Unless and until this...
2004 Aug 06
7
Stream metadata settings
> IMHO, a system like Icecast should be made so highly configurable that it
> would fit everyone's needs, but I get the impression that only the needs of
> the principal developers are of interest here. It makes me sad to see this,
> Icecast could be great instead of just being good.
>
Melanie,
As one of the 'principal developers', I don't think this is fair.
Of
2004 Aug 06
2
ICECAST enseirb group
...at the end or in the
> > if(!client_node) { .... } block ? Are we wrong ? If yes, why ?
> >
> > ----------------------------------------
> >
> > In fserv_thread_function() function in fserve.c file, can something
wrong
> > happen if we are between avl_tree_unlock(pending_tree); and
> > avl_tree_unlock(client_tree); in :
> >
> > ...
> > avl_tree_unlock(pending_tree);
> > avl_tree_unlock(client_tree);
> > thread_cond_wait(&fserv_cond);
> > continue;
> > ...
> >
> > if another thread add a client in the pendin...
2004 Aug 06
0
Stream metadata settings
...ource.c
./src/source.c
--- ../icecast/src/source.c Fri Nov 14 17:51:59 2003
+++ ./src/source.c Mon Dec 1 09:14:34 2003
@@ -139,7 +192,6 @@
#endif
free(source->mount);
- free(source->fallback_mount);
client_destroy(source->client);
avl_tree_free(source->pending_tree, _free_client);
avl_tree_free(source->client_tree, _free_client);
<p>This is the patch and without it, anything using fallbacks will fail
miserably. It is the prerequisite for almost all other patches, because
this bug is a showstopper. Unless and until this patch is applied, all...
2004 Aug 06
0
Stream metadata settings
...3
> > +++ ./src/source.c Mon Dec 1 09:14:34 2003
> > @@ -139,7 +192,6 @@
> > #endif
> >
> > free(source->mount);
> > - free(source->fallback_mount);
> > client_destroy(source->client);
> > avl_tree_free(source->pending_tree, _free_client);
> > avl_tree_free(source->client_tree, _free_client);
> >
> >
> > This is the patch and without it, anything using fallbacks will fail
> > miserably. It is the prerequisite for almost all other patches, because
> > this bug is a showstopp...