diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-12-11 15:06:40 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-12-11 15:06:40 +0000 |
commit | 3f3db84aac0deb573d7d84328a65ac4b4078d2b2 (patch) | |
tree | 54f06c4bdcac41be0406525be531769848e98e97 /net-p2p/gtk-gnutella/files | |
parent | Display TIPS (use rndcontrol(8)) message at post-install. (diff) |
ignore private network hits
PR: 32695
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=51359
Diffstat (limited to 'net-p2p/gtk-gnutella/files')
-rw-r--r-- | net-p2p/gtk-gnutella/files/patch-search.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-p2p/gtk-gnutella/files/patch-search.c b/net-p2p/gtk-gnutella/files/patch-search.c new file mode 100644 index 000000000000..b418fcce1cf0 --- /dev/null +++ b/net-p2p/gtk-gnutella/files/patch-search.c @@ -0,0 +1,20 @@ +--- src/search.c.orig Thu Dec 6 23:52:35 2001 ++++ src/search.c Fri Dec 7 00:05:49 2001 +@@ -13,6 +13,7 @@ + #include "dialog-filters.h" + #include "routing.h" + #include "autodownload.h" ++#include "hosts.h" + + #define MAKE_CODE(a,b,c,d) ( \ + ((guint32) (a) << 24) | \ +@@ -1258,7 +1259,8 @@ + if ( + sch->items >= search_max_results || + search_result_is_dup(sch, rc) || +- !filter_record(sch, rc) ++ !filter_record(sch, rc) || ++ !check_valid_host(rc->results_set->ip,6346) + ) { + rs->records = g_slist_remove(rs->records, rc); + rs->num_recs--; |