summaryrefslogtreecommitdiffhomepage
path: root/src/thread.h
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-05-27 02:33:35 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-05-27 02:33:35 +0000
commitb242a2896ebcfc90bceff5cfa935eea32dc4fc3a (patch)
treeffcdef96d1247df321ee9e103bf891c1538a2a0d /src/thread.h
parent42b09e5441a831e5c32627254639633e883ae000 (diff)
Changed the thread_main() function to only deal with the connections per
thread if the user has actually requested it. Also changed some of the data types for the variables.
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread.h b/src/thread.h
index aea5382..94b60fa 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -1,4 +1,4 @@
-/* $Id: thread.h,v 1.1 2000-09-12 00:07:44 rjkaes Exp $
+/* $Id: thread.h,v 1.2 2001-05-27 02:33:35 rjkaes Exp $
*
* See 'thread.c' for more information.
*
@@ -27,7 +27,7 @@ typedef enum {
} thread_config_t;
extern int thread_pool_create(void);
-extern int thread_listening_sock(unsigned int port);
+extern int thread_listening_sock(uint16_t port);
extern void thread_close_sock(void);
extern int thread_main_loop(void);