X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=recv.h;h=e1ef4e21b8583059bd79e30d4b8d5faef1b30430;hp=7fb45286cd61b93fb88f3ac2a0936cbfea5a6dfd;hb=6c2eae7aea002304e3aa5ae400dab01c469fef0a;hpb=f23be61d476e3f354e31072da0e0e77050a8dc56 diff --git a/recv.h b/recv.h index 7fb45286..e1ef4e21 100644 --- a/recv.h +++ b/recv.h @@ -1,22 +1,10 @@ /* - * Copyright (C) 2005-2006 Andre Noll + * Copyright (C) 2005-2007 Andre Noll * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file recv.h receiver-relates structures and exported symbols of recv_common.c */ +/** \file recv.h receiver-related structures and exported symbols of recv_common.c */ /** * describes one instance of a receiver @@ -32,6 +20,7 @@ struct receiver_node { void *private_data; /** set to 1 if end of file is reached */ int eof; + /** pointer to the eof member of the consumer */ int *output_eof; /** pointer to the configuration data for this instance */ void *conf; @@ -46,14 +35,10 @@ struct receiver_node { */ struct receiver { /** - * - * * the name of the receiver */ const char *name; /** - * - * * the receiver init function * * It must fill in all other function pointers and is assumed to succeed. @@ -62,8 +47,6 @@ struct receiver { */ void (*init)(struct receiver *r); /** - * - * * the command line parser of the receiver * * It should check whether the command line options given by \a argc and \a @@ -71,12 +54,9 @@ struct receiver { * receiver-specific configuration data determined by \a argc and \a argv. * Note that this might be called more than once with different values of * \a argc and \a argv. - * */ void * (*parse_config)(int argc, char **argv); /** - * - * * open one instance of the receiver * * This should allocate the output buffer of \a rn. and may also perform any @@ -89,9 +69,7 @@ struct receiver { */ int (*open)(struct receiver_node *rn); /** - * - * - * close one instance of the receiver + * close this instance of the receiver * * It should free all resources associated with given receiver node that were * allocated during the corresponding open call. @@ -100,29 +78,22 @@ struct receiver { */ void (*close)(struct receiver_node *rn); /** - * - * * deactivate the receiver * * Clean up what init has allocated. */ void (*shutdown)(void); /** - * - * * add file descriptors to fd_sets and compute timeout for select(2) * * The pre_select function gets called from the driving application before * entering its select loop. The receiver may use this hook to add any file * descriptors to the sets of file descriptors given by \a s. * - * * \sa select(2), time.c struct task, struct sched */ void (*pre_select)(struct sched *s, struct task *t); /** - * - * * evaluate the result from select() * * This hook gets called after the call to select(). It should check all file @@ -130,7 +101,6 @@ struct receiver { * call to pre_select. According to the result, it may then use any * non-blocking I/O to establish a connection or to receive the audio data. * - * * \sa select(2), struct receiver */ void (*post_select)(struct sched *s, struct task *t); @@ -150,17 +120,14 @@ extern void ortp_recv_init(struct receiver *r); #define ORTP_RECEIVER #endif -void *check_receiver_arg(char *ra, int *receiver_num); - - extern struct receiver receivers[]; -extern void (*crypt_function_recv)(unsigned long len, const unsigned char *indata, unsigned char *outdata); -extern void (*crypt_function_send)(unsigned long len, const unsigned char *indata, unsigned char *outdata); +/** \endcond */ +/** define an array of all available receivers */ #define DEFINE_RECEIVER_ARRAY struct receiver receivers[] = { \ HTTP_RECEIVER \ DCCP_RECEIVER \ ORTP_RECEIVER \ {.name = NULL}}; -/** \endcond */ +void *check_receiver_arg(char *ra, int *receiver_num);