|
From: Bob T. <bt...@us...> - 2001-08-14 04:11:05
|
Update of /cvsroot/benson/benson3/include/benson
In directory usw-pr-cvs1:/tmp/cvs-serv5197/include/benson
Modified Files:
benson.h ssl.h
Added Files:
network.h
Log Message:
Adding the beginning of the bensond daemon
--- NEW FILE: network.h ---
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netdb.h>
#include <fcntl.h>
Index: benson.h
===================================================================
RCS file: /cvsroot/benson/benson3/include/benson/benson.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** benson.h 2001/08/13 02:20:57 1.1
--- benson.h 2001/08/14 04:11:01 1.2
***************
*** 5,12 ****
--- 5,15 ----
#include "benson/shm_wrapper.h"
#include "benson/ssl.h"
+ #include "benson/network.h"
+ #define PASSWORD "password"
#define CA_LIST "root.pem"
#define RANDOM "random.pem"
#define KEYFILE "key.pem"
+ #define DHFILE "dh1024.pem"
#endif /* __benson_h */
Index: ssl.h
===================================================================
RCS file: /cvsroot/benson/benson3/include/benson/ssl.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ssl.h 2001/08/13 02:20:57 1.1
--- ssl.h 2001/08/14 04:11:01 1.2
***************
*** 6,10 ****
struct ssl_password {
char *password;
! int length;
};
--- 6,10 ----
struct ssl_password {
char *password;
! size_t length;
};
|