diff options
author | Archie Cobbs <archie@FreeBSD.org> | 2006-04-06 13:54:46 +0000 |
---|---|---|
committer | Archie Cobbs <archie@FreeBSD.org> | 2006-04-06 13:54:46 +0000 |
commit | e64e4b6ab5004af418598e36930d480a5b6d1771 (patch) | |
tree | 94f29403f0bd90d0d8b4db260a491de4dc9d9806 /security/skip/files/patch-bm | |
parent | - Update to new master site and updated tarball (diff) |
Remove the skip port. Created before there was an IPSec implementation on
FreeBSD, it is now extremely obsolete. In any case it doesn't compile. Earlier
version of this port can still be used on older versions of FreeBSD of course.
Notes
Notes:
svn path=/head/; revision=158956
Diffstat (limited to 'security/skip/files/patch-bm')
-rw-r--r-- | security/skip/files/patch-bm | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/security/skip/files/patch-bm b/security/skip/files/patch-bm deleted file mode 100644 index 872f3ece11de..000000000000 --- a/security/skip/files/patch-bm +++ /dev/null @@ -1,39 +0,0 @@ -diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/common/skip_keystore.c work.new/skip/common/skip_keystore.c ---- skipsrc-1.0.orig/skip/common/skip_keystore.c Fri Oct 25 13:12:41 1996 -+++ work.new/skip/common/skip_keystore.c Mon Jan 24 12:52:53 2000 -@@ -308,7 +308,7 @@ - /* - * SKIP tunneling mode - */ -- params->payload_type = IPPROTO_ENCAP; -+ params->payload_type = IPPROTO_IPIP; - } - /* - * Return offset of data to decrypt -@@ -1177,7 +1177,7 @@ - * Returns: none - */ - void --skip_key_iterate(int (*f)(), void *arg) -+skip_key_iterate(int (*f)(skip_keycb_t *, void *), void *arg) - { - skip_keycb_t *cp, *ncp; - int i, rc; -@@ -1209,7 +1209,7 @@ - for (cp = skip_decrypt_hashtable[i]; cp; cp = ncp) { - ncp = cp->next; - -- rc = (*f)(cp); -+ rc = (*f)(cp, arg); - - if (rc) { - skip_hash_remove(cp, skip_decrypt_hashtable, -@@ -1258,7 +1258,7 @@ - return(ENOMEM); - } - --#ifdef KERNEL -+#if defined(KERNEL) || defined(_KERNEL) - /* - * XXX 4.x only - * we have knowledge that arg is a pointer to a struct sockaddr which |