head	1.4;
access;
symbols
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.3
	RELEASE_4_6_2:1.3
	RELEASE_4_6_1:1.3
	RELEASE_4_6_0:1.3
	RELEASE_5_0_DP1:1.3
	RELEASE_4_5_0:1.3
	RELEASE_4_4_0:1.3
	RELEASE_4_3_0:1.3
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.3
	RELEASE_3_5_0:1.3
	RELEASE_4_0_0:1.3
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.1.1.1
	RELEASE_2_2_8:1.1.1.1
	RELEASE_3_0_0:1.1.1.1
	RELEASE_2_2_7:1.1.1.1
	RELEASE_2_2_6:1.1.1.1
	ARCHIE_1:1.1.1.1
	WHISTLE_ARCHIE:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2006.04.06.13.54.44;	author archie;	state dead;
branches;
next	1.3;

1.3
date	2000.01.26.01.55.17;	author archie;	state Exp;
branches;
next	1.2;

1.2
date	99.03.10.22.27.53;	author archie;	state Exp;
branches;
next	1.1;

1.1
date	98.01.09.23.23.53;	author julian;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.01.09.23.23.53;	author julian;	state Exp;
branches;
next	;


desc
@@


1.4
log
@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.
@
text
@diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/include/skip_key.h work.new/skip/include/skip_key.h
--- skipsrc-1.0.orig/skip/include/skip_key.h	Fri Oct 25 13:12:44 1996
+++ work.new/skip/include/skip_key.h	Mon Jan 24 12:35:40 2000
@@@@ -209,24 +209,22 @@@@
 				void *, skip_arg_t *)
 		);
 #endif
-void		skip_close();
+void		skip_close(void *sd);
 int		skip_encrypt(void *, SKIP_BUF_T *, SKIP_BUF_T *,
 			skip_param_t *, void *);
 int		skip_decrypt(void *, SKIP_BUF_T *, SKIP_BUF_T *,
 			skip_hdr_t *hdr, int, void *);
 int		skip_key_check(skip_keycb_t *, void *);
-void		skip_key_iterate(int (*)(), void *);
+void		skip_key_iterate(int (*)(skip_keycb_t *, void *), void *);
 int		skip_hdr_encode(skip_hdr_t *, unsigned char *);
 int		skip_iv_encode(skip_hdr_t *, unsigned char *);
 void		skip_hdr_init(skip_keycb_t *);
 
-void		skip_key_tellkm(enum skip_msgs, skip_keycb_t *);
-void		skip_key_fromkm(union skip_messages *, unsigned int);
 void		skip_update_encrypt_key(struct Encrypted_key_rsp *);
 void		skip_update_decrypt_key(struct Decrypted_key_rsp *);
 
-void		skip_local_keyid_init();
-void		skip_local_keyid_uninit();
+void		skip_local_keyid_init(void);
+void		skip_local_keyid_uninit(void);
 void		skip_set_local_keyid(unsigned char , skip_key_var_t *);
 int		skip_check_keyid(unsigned char , skip_key_var_t *, boolean_t);
 int		skip_get_default_keyid(unsigned char, unsigned char *);
@@@@ -254,8 +252,8 @@@@
  * function prototypes
  */
 void		skip_key_fromkm(union skip_messages *, unsigned int);
+void		skip_key_tellkm(enum skip_msgs, skip_keycb_t *);
 #endif
-
 
 /*
  * external variables
@


1.3
log
@Bash this port until it compiles under -current again.
@
text
@@


1.2
log
@Build SKIP port as a KLD instead of an LKM.
@
text
@d1 42
a42 21
diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/keymgrd/skip_msgs.C work.new/skip/keymgrd/skip_msgs.C
--- skipsrc-1.0.orig/skip/keymgrd/skip_msgs.C	Fri Oct 25 13:12:51 1996
+++ work.new/skip/keymgrd/skip_msgs.C	Mon Mar  8 21:33:38 1999
@@@@ -82,7 +82,7 @@@@
         set.msgtype	= SKIP_SET_CDP_SERVER_PORT;
         set.port	= cdp_port;
 	
- 	skip_log(SKIP_NOTICE, "Setting CDP port=%d", cdp_port);
+ 	skip_log(SKIP_INFO, "Setting CDP port=%d", cdp_port);
         fflush(stdout);
  
         if (put_kernel_message(fd, &set, sizeof(set)) < 0) {
@@@@ -107,7 +107,7 @@@@
         set.version     = version;
         set.kij_alg     = kij_alg;
 	
- 	skip_log(SKIP_NOTICE, "Setting supported kij alg=%d for version %d",
+ 	skip_log(SKIP_INFO, "Setting supported kij alg=%d for version %d",
                                                         kij_alg, version);
         fflush(stdout);
  
@


1.1
log
@Initial revision
@
text
@d1 21
a21 20
diff -ur --unidirectional-new-file skipsrc-1.0.orig/skip/man/skipca.1m skipsrc-1.0/skip/man/skipca.1m
--- skipsrc-1.0.orig/skip/man/skipca.1m	Fri Oct 25 13:12:57 1996
+++ skipsrc-1.0/skip/man/skipca.1m	Wed Nov 26 20:10:01 1997
@@@@ -81,14 +81,10 @@@@
 .SH FILES
 .SS Solaris 1.x systems:
 .P
-/etc/skip/CAs
+@@@@PREFIX@@@@/etc/skip/CAs
 .br
-.SS Solaris 2.x systems:
-.P
-/etc/opt/SUNWicg/skip/CAs
-.P
 .SH SEE ALSO
 .BR skipdb(1m)
-.BR skiplocala(1m)
+.BR skiplocal(1m)
 .BR skipd(1m)
 
@


1.1.1.1
log
@Add a package for the SKIP package from Sun Microsystems,
for making secure pipes across the internet (etc.)
@
text
@@
