Changeset 1431
- Timestamp:
- 21/08/06 15:31:02 (15 years ago)
- Location:
- TI05-delivery/trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
TI05-delivery/trunk/setup.py
r1409 r1431 123 123 ('LOCAL_SYSLOG_FACILITY', 1), 124 124 ('_LARGEFILE64_SOURCE', 1), 125 ('_FILE_OFFSET_BITS', 32),125 ('_FILE_OFFSET_BITS', 64), 126 126 ('NDG_PYTHON_EMBED', 1), 127 127 ('PRIVATE_LOGGING', 1), … … 135 135 define_macros = [('NDG_AUTH', 1), ('LOCAL_SYSLOG_FACILITY', 1), 136 136 ('_LARGEFILE64_SOURCE', 1), 137 ('_FILE_OFFSET_BITS', 32),137 ('_FILE_OFFSET_BITS', 64), 138 138 ('NDG_PYTHON_EMBED', 1), 139 139 ('NDG_DELIVERY_VERSION', version)], -
TI05-delivery/trunk/src/bbftp-client-3.2.0/bbftpc/ndg_client.c
r1430 r1431 9 9 * 10 10 */ 11 #include <bbftp.h> 11 12 12 13 #include <ndg_client.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/bbftpd_crypt.c
r1395 r1431 37 37 38 38 *****************************************************************************/ 39 #include <bbftpd.h> 40 39 41 #include <errno.h> 40 42 #include <sys/types.h> … … 53 55 #endif 54 56 55 #include <bbftpd.h>56 57 #include <common.h> 57 58 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/bbftpd_private_user.c
r1358 r1431 27 27 28 28 *****************************************************************************/ 29 #include <bbftpd.h> 30 29 31 #include <netinet/in.h> 30 32 #include <utime.h> 31 33 32 #include <bbftpd.h>33 34 #include <daemon_proto.h> 34 35 #include <structures.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/bbftpd_stat.c
r1395 r1431 29 29 30 30 *****************************************************************************/ 31 31 #include <bbftpd.h> 32 32 33 33 #include <stdio.h> … … 50 50 #include <sys/stat.h> 51 51 #include <unistd.h> 52 #include <bbftpd.h>53 52 #include <common.h> 54 53 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/changetodir.c
r1395 r1431 37 37 38 38 *****************************************************************************/ 39 #include <bbftpd.h> 39 40 40 41 #include <errno.h> … … 49 50 #include <daemon_proto.h> 50 51 51 #include <bbftpd.h>52 52 #include <common.h> 53 53 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/ndg.c
r1430 r1431 9 9 * 10 10 */ 11 12 #include <bbftpd.h> 11 13 12 14 #ifdef NDG_PYTHON_EMBED -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/readcontrol.c
r1395 r1431 52 52 53 53 *****************************************************************************/ 54 #include <bbftpd.h> 55 54 56 #include <sys/time.h> 55 57 #include <netinet/in.h> 56 58 #include <bbftpd_private_log.h> 57 59 58 #include <bbftpd.h>59 60 #include <common.h> 60 61 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/sendafilerfio.c
r1358 r1431 62 62 63 63 *****************************************************************************/ 64 #include <bbftpd.h> 65 64 66 #include <errno.h> 65 67 #include <fcntl.h> … … 73 75 #include <unistd.h> 74 76 75 #include <bbftpd.h>76 77 #include <common.h> 77 78 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/sendlist.c
r1395 r1431 37 37 38 38 *****************************************************************************/ 39 #include <bbftpd.h> 40 39 41 #include <errno.h> 40 42 #include <fcntl.h> … … 47 49 #include <unistd.h> 48 50 49 #include <bbftpd.h>50 51 #include <common.h> 51 52 #include <daemon.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/bbftpd/set_father_signals.c
r1358 r1431 29 29 30 30 *****************************************************************************/ 31 #include <bbftpd.h> 32 31 33 #include <errno.h> 32 34 #include <signal.h> -
TI05-delivery/trunk/src/bbftp-server-3.2.0/includes/client_proto.h
r773 r1431 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() ;
Note: See TracChangeset
for help on using the changeset viewer.