Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updated ignores, and updated header includes to support win32 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
22df989e88ed3cc9870a6ccf48fe9c4d |
User & Date: | rkeene 2008-11-15 13:04:11 |
Context
2008-11-15
| ||
17:55 | Added win32 winsock initialization routines check-in: a81fdbceed user: rkeene tags: trunk | |
13:04 | Updated ignores, and updated header includes to support win32 check-in: 22df989e88 user: rkeene tags: trunk | |
2008-11-12
| ||
17:43 | Updated "file_sync" to use MD5 instead of MD4 for hashing check-in: e063cc9d59 user: rkeene tags: trunk | |
Changes
Changes to tools/file_sync-standalone.c.
︙ | ︙ | |||
46 47 48 49 50 51 52 | static void MD5_Init(MD5_CTX *ctx); static void MD5_Update(MD5_CTX *ctx, void *data, unsigned long size); static void MD5_Final(unsigned char *result, MD5_CTX *ctx); /* MD5.H ENDS */ #include <sys/types.h> | < < < > > > > > > | | > | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | static void MD5_Init(MD5_CTX *ctx); static void MD5_Update(MD5_CTX *ctx, void *data, unsigned long size); static void MD5_Final(unsigned char *result, MD5_CTX *ctx); /* MD5.H ENDS */ #include <sys/types.h> #include <sys/stat.h> #include <signal.h> #include <limits.h> #include <stdint.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <fcntl.h> #include <time.h> #if defined(__WIN32__) && !defined(__CYGWIN__) #include <windows.h> #else #include <arpa/inet.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #endif #ifndef INT_MAX #define INT_MAX (0x7fffffff) #endif #ifndef O_LARGEFILE #define O_LARGEFILE 0 |
︙ | ︙ |