diff options
author | Lars Heer <l.heer@gmx.de> | 2013-09-18 05:59:02 +0200 |
---|---|---|
committer | Lars Heer <l.heer@gmx.de> | 2013-09-18 05:59:02 +0200 |
commit | 4d09442efcd8c158999685831720919a705f3d98 (patch) | |
tree | 5a164f4441f56ab0df1d0ad24a97701e3b29dd3d /mcast/client/.svn/text-base/ci_handler.h.svn-base | |
parent | 079f1dc39df7faabf0d1a846b4df0525b9491a87 (diff) | |
download | vdr-plugin-mcli-4d09442efcd8c158999685831720919a705f3d98.tar.gz vdr-plugin-mcli-4d09442efcd8c158999685831720919a705f3d98.tar.bz2 |
removed obsolete .svn directories
Diffstat (limited to 'mcast/client/.svn/text-base/ci_handler.h.svn-base')
-rw-r--r-- | mcast/client/.svn/text-base/ci_handler.h.svn-base | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/mcast/client/.svn/text-base/ci_handler.h.svn-base b/mcast/client/.svn/text-base/ci_handler.h.svn-base deleted file mode 100644 index 3ecfc02..0000000 --- a/mcast/client/.svn/text-base/ci_handler.h.svn-base +++ /dev/null @@ -1,30 +0,0 @@ -/* - * (c) BayCom GmbH, http://www.baycom.de, info@baycom.de - * - * See the COPYING file for copyright information and - * how to reach the author. - * - */ - -typedef struct { - struct list list; - - pthread_t ci_recv_thread; - char uuid[UUID_SIZE]; - SOCKET fd_ci; - int recv_run; - int device; - int connected; - recv_cacaps_t *cacaps; - u_int8_t *txdata; - u_int8_t *rxdata; - int (*handle_ci_slot[CA_MAX_SLOTS]) (ci_pdu_t *tpdu, void *context); - void *handle_ci_slot_context[CA_MAX_SLOTS]; -} ci_dev_t; - -DLL_SYMBOL int ci_register_handler(ci_dev_t *c, int slot, int (*p) (ci_pdu_t *, void *), void *context); -DLL_SYMBOL int ci_unregister_handler(ci_dev_t *c, int slot); -DLL_SYMBOL int ci_write_pdu(ci_dev_t *c, ci_pdu_t *tpdu); -DLL_SYMBOL ci_dev_t *ci_find_dev_by_uuid (char *uuid); -DLL_SYMBOL int ci_init (int ca_enable, char *intf, int p); -DLL_SYMBOL void ci_exit (void); |