[AC_MSG_ERROR([function not found, cannot live without it])])
all_errlist_objs="server mp3_afh afh_common vss command net string signal time
-daemon stat crypt http_send close_on_fork ipc dccp
+daemon stat crypt http_send close_on_fork ipc
dccp_send fd user_list chunk_queue afs osl aft mood score attribute blob ringbuffer
playlist sha1 rbtree sched audiod grab_client filter_chain wav compress
http_recv dccp_recv recv_common write_common file_write audiod_command
recv_cmdline_objs="recv.cmdline http_recv.cmdline dccp_recv.cmdline"
recv_errlist_objs="http_recv recv_common recv time string net dccp_recv
- dccp fd sched stdout"
+ fd sched stdout"
recv_ldflags=""
receivers=" http dccp"
http_recv.cmdline dccp_recv.cmdline file_write.cmdline client.cmdline
audiod_command_list"
audiod_errlist_objs="audiod signal string daemon stat net
- time grab_client filter_chain wav compress http_recv dccp dccp_recv
+ time grab_client filter_chain wav compress http_recv dccp_recv
recv_common fd sched write_common file_write audiod_command crypt
client_common"
audiod_ldflags=""
server_cmdline_objs="server.cmdline server_command_list afs_command_list"
server_errlist_objs="server afh_common mp3_afh vss command net string signal
time daemon stat crypt http_send close_on_fork
- ipc dccp dccp_send fd user_list chunk_queue afs osl aft mood score attribute
+ ipc dccp_send fd user_list chunk_queue afs osl aft mood score attribute
blob playlist sha1 rbtree sched"
server_ldflags=""
server_audio_formats=" mp3"
+++ /dev/null
-/*
- * Copyright (C) 2006-2007 Andre Noll <maan@systemlinux.org>
- *
- * Licensed under the GPL v2. For licencing details see COPYING.
- */
-
-/** \file dccp.c common functions of the dccp sender/receiver */
-
-/*
- * based on common.c of dccp-cs-0.01.tar.bz2,
- * (C) 2005 Ian McDonald <imcdnzl@gmail.com>
- */
-
-#include <sys/types.h>
-#include <dirent.h>
-
-#include "para.h"
-#include "error.h"
-#include "dccp.h"
-#include "fd.h"
-#include "net.h"
-
-/**
- * obtain a dccp socket for sending/receiving
- *
- * \return the file descriptor of the new socket or \p -E_DCCP_SOCKET
- * on errors.
- */
-int dccp_get_socket(void)
-{
- int s = socket(AF_INET, SOCK_DCCP, IPPROTO_DCCP);
-
- if (s < 0)
- return -E_DCCP_SOCKET;
- return s;
-}
-
-/**
- * prepare a dccp socket
- *
- * \param fd the file descriptor of the socket
- *
- * \returns positive on success, negative on errors.
- */
-int dccp_set_socket(__a_unused int fd)
-{
- return 1; /* nothing to do at the moment */
-}
+++ /dev/null
-/*
- * Copyright (C) 2006 Andre Noll <maan@systemlinux.org>
- *
- * Licensed under the GPL v2. For licencing details see COPYING.
- */
-
-/** \file dccp.h functions exported by dccp.c */
-
-/*
- * based on common.h of dccp-cs-0.01.tar.bz2,
- * (C) 2005 Ian McDonald <imcdnzl@gmail.com>
- */
-
-int dccp_get_socket(void);
-int dccp_set_socket(int fd);
#include "para.h"
#include "error.h"
-#include "dccp.h"
#include "list.h"
#include "sched.h"
#include "recv.h"
#include "list.h"
#include "vss.h"
#include "send.h"
-#include "dccp.h"
#include "fd.h"
#include "close_on_fork.h"
#include "chunk_queue.h"