Changeset 1428
- Timestamp:
- 21/08/06 13:10:13 (15 years ago)
- Location:
- TI05-delivery/trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/trunk/src/Makefile
r1409 r1428 7 7 VERSION:=$(shell cat ../VERSION) 8 8 9 DEFS="-DNDG_AUTH -DLOCAL_SYSLOG_FACILITY -DNDG_DELIVERY_VERSION=$(VERSION) -g -D_FILE_OFFSET_BITS=64 "9 DEFS="-DNDG_AUTH -DLOCAL_SYSLOG_FACILITY -DNDG_DELIVERY_VERSION=$(VERSION) -g -D_FILE_OFFSET_BITS=64 -Wall" 10 10 CONFIG_OPTS=--prefix=$(PREFIX) --without-gzip --without-rfio --enable-authentication=private \ 11 11 --enable-private-logging \ -
TI05-delivery/trunk/src/bbftp-client-3.2.0/bbftpc/bbftp.c
r1390 r1428 42 42 43 43 #include <stdlib.h> 44 #include <ctype.h> 44 45 45 46 #include <errno.h> -
TI05-delivery/trunk/src/bbftp-client-3.2.0/bbftpc/bbftp_private_user.c
r1393 r1428 38 38 #include <bbftp_private_user.h> 39 39 #include <client.h> 40 #include <client_proto.h> 40 41 41 42 #ifdef NDG_AUTH -
TI05-delivery/trunk/src/bbftp-client-3.2.0/bbftpc/bbftpstatus.c
r1390 r1428 23 23 24 24 #include <stdlib.h> 25 #include <ctype.h> 25 26 26 27 #include <errno.h> -
TI05-delivery/trunk/src/bbftp-client-3.2.0/includes/client_proto.h
r1395 r1428 94 94 ** Prototype for connection routines 95 95 */ 96 static int splitargs (const char* s, char** argv, size_t maxargs, char* buf, size_t maxbuf);97 96 int connectviassh() ; 98 97 int connectviapassword() ; … … 120 119 int bbftp_private_getargs(char *logmessage); 121 120 int bbftp_private_connect(void); 121 int bbftp_private_send(char *buffertosend, int buffertosendlength, char *logmessage); 122 int bbftp_private_recv(char *buffertorecv, int lengthtorecv, char *logmessage); 123 int treatcommand(char *buffercmd); 124 int translatecommand(char *buffercmd, char **translatedcmd, char **host, int *port, int *remoterfio, int *localrfio); -
TI05-delivery/trunk/src/bbftp-server-3.2.0/includes/daemon_proto.h
r1397 r1428 72 72 */ 73 73 int bbftpd_private_auth(char *logmessage) ; 74 int bbftpd_private_authz_control(int msgcode, int transferoption, char *path, char *logmessage); 75 int bbftpd_private_authz_store(char *path, char *logmessage); 76 int bbftpd_private_authz_retr(char *path, char *logmessage); 74 77 /* 75 78 ** Prototype for retr routines -
TI05-delivery/trunk/src/bbftp-server-3.2.0/includes/ndg.h
r1289 r1428 30 30 int bbftpd_private_authz_store(char *path, char *logmessage); 31 31 32 int ndg_message_send(char *buffer, int length, char *logmessage);33 int ndg_message_recv(char **buffer, int *length, char *logmessage);34 35 32 int ndg_auth(char *logmessage); 36 33 char *ndg_getusername(char *logmessage); … … 42 39 43 40 #endif // NDG_PYTHON_EMBED 41 42 int ndg_message_send(char *buffer, int length, char *logmessage); 43 int ndg_message_recv(char **buffer, int *length, char *logmessage); 44
Note: See TracChangeset
for help on using the changeset viewer.