diff options
| author | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-30 21:36:28 +0000 |
|---|---|---|
| committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-30 21:36:28 +0000 |
| commit | fbab09fee302574e578e4f0d1b6082cdae4defb4 (patch) | |
| tree | 2e89197b88b8a883c56aef7a5d0d89dc5d374850 /net/mldonkey/files/patch-hashes | |
| parent | Upgrade to 1.63.0. (diff) | |
Populate newly create net-p2p category with these ports:
ftp/jigdo
net/amule1
net/amule2
net/apollon
net/azureus
net/bnbt
net/btpeer
net/btqueue
net/cdonkey
net/ctorrent
net/dcd
net/dclib
net/dctc
net/dctc-gui
net/dctc-gui-qt
net/edonkey-gui-gtk
net/edonkey-gui-gtk-urlslave
net/fcptools
net/fidelio
net/freenet
net/frost
net/giftcurs
net/giftoxic
net/giftui
net/gift
net/gift-fasttrack
net/gift-gnutella
net/gift-openft
net/gkrellm-gift
net/gnewtellium
net/gnome-btdownload
net/gnunet
net/gtkhx
net/gtk-gnutella
net/gtorrentviewer
net/hagelslag
net/hx
net/i2p
net/javadc
net/kmldonkey
net/ktorrent
net/libbt
net/liberator
net/libfreenet
net/libpdtp
net/libtorrent
net/limewire
net/linux-agsatellite
net/linux-edonkey-core
net/linux-edonkey-server
net/linux-jigdo
net/linux-overnet-core
net/minder
net/mldonkey
net/mldonkey-core
net/mldonkey-core-devel
net/mldonkey-devel
net/mldonkey-gui
net/mldonkey-gui-devel
net/mldonkey-perlreactor
net/mldonkey-sancho
net/mldonkey-serverspy
net/mldonkey-urlslave
net/mutella
net/mute-net
net/mute-net-gui
net/mute-net-text
net/napshare
net/nicotine
net/opendchub
net/peercast
net/phex
net/pyslsk
net/py-bittornado
net/py-bittornado-core
net/py-bittorrent
net/py-bittorrent-core
net/py-bittorrent-core-devel
net/py-bittorrent-devel
net/py-fngrab
net/py-kenosis
net/py-kenosis-bittorrent
net/py-py2play
net/p5-pdonkey
net/qtella
net/qtorrent
net/rtorrent
net/squall
net/torrentflux
net/torrentsniff
net/trackerbt
net/transmission
net/valknut
net/verlihub
net/verlihub-plugins
net/xmule
net/xnap
misc/ed2k
misc/edonkey-tool-hash
misc/linux-edonkey-tool-recovermet
Repocopies by: marcus
Notes
Notes:
svn path=/head/; revision=154851
Diffstat (limited to 'net/mldonkey/files/patch-hashes')
| -rw-r--r-- | net/mldonkey/files/patch-hashes | 154 |
1 files changed, 0 insertions, 154 deletions
diff --git a/net/mldonkey/files/patch-hashes b/net/mldonkey/files/patch-hashes deleted file mode 100644 index fc1f71eb47f9..000000000000 --- a/net/mldonkey/files/patch-hashes +++ /dev/null @@ -1,154 +0,0 @@ ---- src/utils/lib/stubs_c.c.orig Tue Sep 6 22:03:39 2005 -+++ src/utils/lib/stubs_c.c Tue Sep 6 22:11:04 2005 -@@ -515,11 +515,11 @@ - nread = os_read (fd, hash_buffer, max_nread); \ - \ - if(nread < 0) { \ -- unix_error(errno, "md4_safe_fd: Read", Nothing); \ -+ unix_error(errno, "HASH_NAME##un_safe_fd: Read", Nothing); \ - } \ - \ - if(nread == 0){ \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - \ - return Val_unit; \ - } \ -@@ -527,7 +527,7 @@ - HASH_APPEND (&context, hash_buffer, nread); \ - len -= nread; \ - } \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - \ - return Val_unit; \ - } \ -@@ -541,7 +541,7 @@ - \ - HASH_INIT (&context); \ - HASH_APPEND (&context, string, len); \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - \ - return Val_unit; \ - } \ -@@ -561,7 +561,7 @@ - HASH_INIT (&context); \ - while ((len = fread (hash_buffer, 1, HASH_BUFFER_LEN, file)) >0) \ - HASH_APPEND (&context, hash_buffer, len); \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - \ - fclose (file); \ - } \ -@@ -569,13 +569,13 @@ - } \ - - --#include "md4.h" --#include "md5.h" --#include "sha1_c.h" -+#include <openssl/md4.h> -+#include <openssl/md5.h> -+#include <openssl/sha.h> - --ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end) --ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish) --ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish) -+ML_HASH(sha1,SHA_CTX,SHA1_Init,SHA1_Update, SHA1_Final) -+ML_HASH(md5, MD5_CTX, MD5_Init, MD5_Update, MD5_Final) -+ML_HASH(md4, MD4_CTX, MD4_Init, MD4_Update, MD4_Final) - - /******************************************************************* - ---- src/daemon/common/commonHasher_c.c.orig Tue Sep 6 22:14:27 2005 -+++ src/daemon/common/commonHasher_c.c Tue Sep 6 22:19:35 2005 -@@ -37,9 +37,9 @@ - #define JOB_HANDLER 5 - #define JOB_ERROR 6 - --#include "../../utils/lib/md4.h" --#include "../../utils/lib/md5.h" --#include "../../utils/lib/sha1_c.h" -+#include <openssl/md4.h> -+#include <openssl/md5.h> -+#include <openssl/sha.h> - #include "../../utils/lib/tiger.h" - - -@@ -68,7 +68,7 @@ - unix_error(errno, "HASH_NAME##unsafe64_fd_direct: Read", Nothing); \ - } \ - if(nread == 0){ \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - \ - return; \ - } \ -@@ -76,12 +76,12 @@ - HASH_APPEND (&context, local_hash_buffer, nread); \ - len -= nread; \ - } \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - } - --COMPLETE_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end) --COMPLETE_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish) --COMPLETE_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish) -+COMPLETE_HASH(sha1,SHA_CTX,SHA1_Init,SHA1_Update, SHA1_Final) -+COMPLETE_HASH(md5, MD5_CTX, MD5_Init, MD5_Update, MD5_Final) -+COMPLETE_HASH(md4, MD4_CTX, MD4_Init, MD4_Update, MD4_Final) - - static void tiger_tree_fd(OS_FD fd, long len, off_t pos, - int block_size, char *digest) -@@ -160,7 +160,7 @@ - \ - if(nread == 0){ \ - unsigned char *digest = String_val(Field(job_v, JOB_RESULT)); \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - job_finished = 1; \ - timer = 10; \ - return Val_true; \ -@@ -173,7 +173,7 @@ - \ - if(job_len <= 0){ \ - unsigned char *digest = String_val(Field(job_v, JOB_RESULT)); \ -- HASH_FINISH (&context, digest); \ -+ HASH_FINISH (digest, &context); \ - job_finished = 1; \ - timer = 10; \ - return Val_true; \ ---- src/networks/fasttrack/fst_crypt.c.orig Tue Sep 6 22:23:50 2005 -+++ src/networks/fasttrack/fst_crypt.c Tue Sep 6 22:26:34 2005 -@@ -15,7 +15,8 @@ - * General Public License for more details. - */ - --#include "../../utils/lib/md5.h" -+#include <string.h> -+#include <openssl/md5.h> - #include "fst_crypt.h" - - /*****************************************************************************/ -@@ -106,14 +106,14 @@ - - if (enc_type & 0x08) - { -- MD5Context ctx; -- unsigned char md5[MD5_HASH_LEN]; -+ MD5_CTX ctx; -+ unsigned char md5[MD5_DIGEST_LENGTH]; - - FST_HEAVY_DBG ("init_cipher: enc_type & 0x08"); - -- MD5Init (&ctx); -- MD5Update (&ctx, cipher->pad, sizeof(cipher->pad)); -- MD5Final (md5, &ctx); -+ MD5_Init (&ctx); -+ MD5_Update (&ctx, cipher->pad, sizeof(cipher->pad)); -+ MD5_Final (md5, &ctx); - - /* correct md5 byte order on big-endian since it's converted to (unsigned int*) below */ - reverse_bytes ( (unsigned int*)&md5, 4); |
