summaryrefslogtreecommitdiff
path: root/src/downserver
diff options
context:
space:
mode:
Diffstat (limited to 'src/downserver')
-rw-r--r--src/downserver/CMakeLists.txt27
-rw-r--r--src/downserver/downServer.c27
2 files changed, 0 insertions, 54 deletions
diff --git a/src/downserver/CMakeLists.txt b/src/downserver/CMakeLists.txt
deleted file mode 100644
index 2a3b863..0000000
--- a/src/downserver/CMakeLists.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-###############################################################################
-# tuxanci/src/downserver/CMakeLists.txt
-###############################################################################
-# LINKING ( for downserver )
-###############################################################################
-LINK_LIBRARIES ( ${CMAKE_DL_LIBS} )
-IF ( Win )
- LINK_LIBRARIES ( wsock32 )
-ENDIF ( Win )
-###############################################################################
-# SOURCE SPECIFICATION
-###############################################################################
-IF ( Server )
- SET ( SRC
- ${WORKDIR}/base/list ${WORKDIR}/base/textFile
- ${WORKDIR}/base/buffer ${WORKDIR}/net/tcp
- ${WORKDIR}/downserver/downServer
- )
-###############################################################################
-# COMPILATION AND INSTALLATION ITSELF
-###############################################################################
- ADD_EXECUTABLE ( tuxanci-downserver-${TUXANCI_VERSION} ${SRC} )
- INSTALL ( TARGETS tuxanci-downserver-${TUXANCI_VERSION}
- RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
- LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/${APPNAME} )
-ENDIF ( Server )
-###############################################################################
diff --git a/src/downserver/downServer.c b/src/downserver/downServer.c
deleted file mode 100644
index 7711f52..0000000
--- a/src/downserver/downServer.c
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <sys/types.h>
-
-#include <unistd.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/time.h>
-#include <sys/stat.h>
-
-#include "list.h"
-#include "tcp.h"
-#include "buffer.h"
-#include "textFile.h"
-
-int isFillPath(const char *path)
-{
- return 0;
-}
-
-int main()
-{
- return 0;
-}