summaryrefslogtreecommitdiff
path: root/tools/vdrdiscovery.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/vdrdiscovery.h')
-rw-r--r--tools/vdrdiscovery.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/tools/vdrdiscovery.h b/tools/vdrdiscovery.h
deleted file mode 100644
index 7c4d18ae..00000000
--- a/tools/vdrdiscovery.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * vdrdiscovery.h
- *
- * Simple broadcast protocol to search VDR with xineliboutput server
- * from (local) network.
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: vdrdiscovery.h,v 1.3 2007-06-11 19:39:06 phintuka Exp $
- *
- */
-
-#ifndef _VDRDISCOVERY_H_
-#define _VDRDISCOVERY_H_
-
-#define DISCOVERY_MSG_MAXSIZE 1024
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifdef FE_STANDALONE
-int udp_discovery_find_server(int *port, char *address);
-#else
-int udp_discovery_init(void);
-int udp_discovery_broadcast(int fd_discovery, int server_port, const char *server_address);
-int udp_discovery_recv(int fd_discovery, char *buf, int timeout,
- struct sockaddr_in *source);
-int udp_discovery_is_valid_search(const char *buf);
-#endif
-
-#ifdef __cplusplus
-};
-#endif
-
-
-#endif // _VDRDISCOVERY_H_