diff options
author | dos-reis <gdr@axiomatics.org> | 2008-04-01 07:38:50 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-04-01 07:38:50 +0000 |
commit | 792e7b4e6ec894f93a8fbe51ccf6c155997c69ec (patch) | |
tree | 0b11cb955a99fdd6c419b19646e35578ef11086f /src/sman | |
parent | 7a0c33622b460c94beef6cd31ef37807887f5a2c (diff) | |
download | open-axiom-792e7b4e6ec894f93a8fbe51ccf6c155997c69ec.tar.gz |
* include/nagman.H1: Remove.
* include/session.H1: Move content to sman/session.c. Remove.
* sman/session.c: Don't include "session.H1" anymore.
* sman/spadclient.c: Don't include "spadclient.H1" anymore.
* include/spadclient.H1: Remove.
* include/spadbuf.H1: Move content to hyper/spadbuf.c. Remove.
* hyper/spadbuf.c: Don't include "spadbuf.H1" anymore.
* hyper/htadd.c: Don't include "htadd.H1" anymore.
* include/htadd.H1: Move content to hyper/htadd.c. Remove.
Diffstat (limited to 'src/sman')
-rw-r--r-- | src/sman/session.c | 15 | ||||
-rw-r--r-- | src/sman/spadclient.c | 1 |
2 files changed, 14 insertions, 2 deletions
diff --git a/src/sman/session.c b/src/sman/session.c index 442da39d..8376e9ca 100644 --- a/src/sman/session.c +++ b/src/sman/session.c @@ -47,7 +47,20 @@ #include "com.h" #include "bsdsignal.h" #include "sockio.h" -#include "session.H1" + +static void usr1_handler(int); +static void usr2_handler(int); +static void term_handler(int); +static void close_client(int); +static void read_SpadServer_command(void); +static int test_sock_for_process(Sock*); +static void read_menu_client_command(void); +static void read_from_spad_io(void); +static void kill_spad(void); +static int accept_session_connection(Sock*); +static void read_from_session(Sock*); +static void manage_sessions(void); + #define BufSize 4096 /* size of communication buffer */ diff --git a/src/sman/spadclient.c b/src/sman/spadclient.c index 1d74dabf..d7825dc7 100644 --- a/src/sman/spadclient.c +++ b/src/sman/spadclient.c @@ -45,7 +45,6 @@ #include "bsdsignal.h" #include "sockio.h" -#include "spadclient.H1" Sock *sock; |