OpenBSD CVS

CVS log for src/sbin/isakmpd/ui.c


[BACK] Up to [local] / src / sbin / isakmpd

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.58 / (download) - annotate - [select for diffs], Sun Oct 24 21:24:21 2021 UTC (2 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, HEAD
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored)

For open/openat, if the flags parameter does not contain O_CREAT, the
3rd (variadic) mode_t parameter is irrelevant.  Many developers in the past
have passed mode_t (0, 044, 0644, or such), which might lead future people
to copy this broken idiom, and perhaps even believe this parameter has some
meaning or implication or application. Delete them all.
This comes out of a conversation where tb@ noticed that a strange (but
intentional) pledge behaviour is to always knock-out high-bits from
mode_t on a number of system calls as a safety factor, and his bewilderment
that this appeared to be happening against valid modes (at least visually),
but no sorry, they are all irrelevant junk.  They could all be 0xdeafbeef.
ok millert

Revision 1.57 / (download) - annotate - [select for diffs], Tue Dec 5 20:31:45 2017 UTC (6 years, 6 months ago) by jca
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.56: +5 -5 lines
Diff to previous 1.56 (colored)

Use clock_gettime(CLOCK_MONOTONIC) to schedule timers

From Scott Cheloha, ok tb@

Revision 1.56 / (download) - annotate - [select for diffs], Mon Dec 1 23:05:18 2014 UTC (9 years, 6 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

memcpy abort found an overlap. from dsp at 2f30. ok deraadt

Revision 1.55 / (download) - annotate - [select for diffs], Thu Oct 9 02:38:56 2014 UTC (9 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored)

obvious reallocarray() conversions

Revision 1.54 / (download) - annotate - [select for diffs], Tue Jun 10 22:14:02 2008 UTC (16 years ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.53: +20 -21 lines
Diff to previous 1.53 (colored)

Arguments to fifo commands were limited to 80 bytes.  That is too
short for IPv6.  Increase the buffer size from 80 to 200 where
appropriate.  For the M command a buffer for 10 bytes is sufficient.
ok hshoexer@ mpf@ grunk@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Apr 16 13:01:39 2007 UTC (17 years, 1 month ago) by moritz
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.52: +2 -3 lines
Diff to previous 1.52 (colored)

There's no point in checking ptr for NULL before doing free(ptr)
since free(NULL) is just fine.

ok hshoexer@

Revision 1.52 / (download) - annotate - [select for diffs], Thu Nov 30 11:24:49 2006 UTC (17 years, 6 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.51: +40 -2 lines
Diff to previous 1.51 (colored)

new ui command 'rmv': removes an entry from a list, thus reversing an
'add' operation; ok ho, hshoexer, jmc
eVS: ----------------------------------------------------------------------

Revision 1.51 / (download) - annotate - [select for diffs], Tue Nov 28 09:27:09 2006 UTC (17 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.50: +27 -11 lines
Diff to previous 1.50 (colored)

do not re-add existing entries; ok hshoexer

Revision 1.50 / (download) - annotate - [select for diffs], Wed Oct 18 21:18:59 2006 UTC (17 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.49: +15 -14 lines
Diff to previous 1.49 (colored)

do not name FILE * variables "fd" since it is confusing

Revision 1.49 / (download) - annotate - [select for diffs], Tue Sep 19 10:48:41 2006 UTC (17 years, 8 months ago) by otto
Branch: MAIN
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Use S_IS* macros insted of masking with S_IF* flags. The latter may
have multiple bits set, which leads to surprising results. Spotted by/partly
from Paul Stoeber, more to come. ok ho@ miod@ hshoexer@

Revision 1.48 / (download) - annotate - [select for diffs], Fri Sep 1 00:24:06 2006 UTC (17 years, 9 months ago) by mpf
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.47: +32 -1 lines
Diff to previous 1.47 (colored)

Add a new UI command to force isakmpd into passive only mode.
Will be used by sasyncd to prevent two talking isakmpd's in an HA setup.
Based on a diff by ho@.
OK ho@, hshoexer@, deraadt@

Revision 1.47 / (download) - annotate - [select for diffs], Mon Nov 14 23:25:11 2005 UTC (18 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.46: +6 -10 lines
Diff to previous 1.46 (colored)

use snprintf; ok cloder.  also looked at by a few other people

Revision 1.46 / (download) - annotate - [select for diffs], Fri Sep 23 14:44:03 2005 UTC (18 years, 8 months ago) by hshoexer
Branch: MAIN
Changes since 1.45: +50 -10 lines
Diff to previous 1.45 (colored)

Provide UI commands to delete phase 1 SAs.

Looks good mortiz@

Revision 1.45 / (download) - annotate - [select for diffs], Fri Apr 8 22:32:10 2005 UTC (19 years, 2 months ago) by cloder
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.44: +1 -3 lines
Diff to previous 1.44 (colored)

Make deterministic randomness (only ever used for testing) a compile-time
option.  Reduces chances of somehow setting regrand when it's not supposed
to be set.  Remove "-r" option from man page.  Also xref certpatch(8) while
we are in there.  And remove some include sysdep.h where it is no longer
needed.
OK hshoexer

Revision 1.44 / (download) - annotate - [select for diffs], Fri Apr 8 19:40:03 2005 UTC (19 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.43: +1 -5 lines
Diff to previous 1.43 (colored)

USE_DEBUG is bye bye

Revision 1.43 / (download) - annotate - [select for diffs], Mon Apr 4 19:31:11 2005 UTC (19 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.42: +2 -3 lines
Diff to previous 1.42 (colored)

spacing; ok cloder

Revision 1.42 / (download) - annotate - [select for diffs], Sun Aug 8 19:11:06 2004 UTC (19 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.41: +4 -4 lines
Diff to previous 1.41 (colored)

spacing

Revision 1.41 / (download) - annotate - [select for diffs], Fri Jun 25 00:58:39 2004 UTC (19 years, 11 months ago) by hshoexer
Branch: MAIN
Changes since 1.40: +5 -12 lines
Diff to previous 1.40 (colored)

Narrow down privsep interface.  Remove ui_init to monitor. So we can get rid of
monitor_mkfifo.

Work in progress.

ok ho@

Revision 1.40 / (download) - annotate - [select for diffs], Sun May 23 18:17:56 2004 UTC (20 years ago) by hshoexer
Branch: MAIN
Changes since 1.39: +5 -5 lines
Diff to previous 1.39 (colored)

More KNF.  Mainly spaces and line-wraps, no binary change.

ok ho@

Revision 1.39 / (download) - annotate - [select for diffs], Thu May 13 06:56:34 2004 UTC (20 years, 1 month ago) by ho
Branch: MAIN
Changes since 1.38: +114 -13 lines
Diff to previous 1.38 (colored)

Extensions to the FIFO interface:
"C get [section]:tag" fetches a configuration value.
"C add [section]:tag=value" adds 'value' to a list, typically for the
[Phase 2]:Connections tag. FIFO "S" command destination file changed.
Various KNF cleanups. hshoexer@ ok.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Apr 15 18:39:26 2004 UTC (20 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.37: +277 -311 lines
Diff to previous 1.37 (colored)

partial move to KNF.  More to come.  This has happened because there
are a raft of source code auditors who are willing to help improve this
code only if this is done, and hey, isakmpd does need our standard
auditing process.  ok ho hshoexer

Revision 1.37 / (download) - annotate - [select for diffs], Wed Apr 7 22:45:49 2004 UTC (20 years, 2 months ago) by ho
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

-Wsign-compare nits. hshoexer@ ok.

Revision 1.36 / (download) - annotate - [select for diffs], Fri Mar 19 14:04:43 2004 UTC (20 years, 2 months ago) by hshoexer
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.35: +6 -1 lines
Diff to previous 1.35 (colored)

Add missing bits to make already present privsep code work.  Enable privsep.

ok ho@ deraadt@ markus@

Revision 1.35 / (download) - annotate - [select for diffs], Thu Nov 6 16:12:08 2003 UTC (20 years, 7 months ago) by ho
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

Style nits.

Revision 1.34 / (download) - annotate - [select for diffs], Mon Oct 13 13:57:51 2003 UTC (20 years, 8 months ago) by ho
Branch: MAIN
Changes since 1.33: +7 -6 lines
Diff to previous 1.33 (colored)

Add a UI FIFO debug class. ok markus@ plus I think henning@

Revision 1.33 / (download) - annotate - [select for diffs], Tue Jun 3 14:28:16 2003 UTC (21 years ago) by ho
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.32: +2 -7 lines
Diff to previous 1.32 (colored)

Remove clauses 3 and 4. With approval from Niklas Hallqvist and
Niels Provos.

Revision 1.32 / (download) - annotate - [select for diffs], Thu May 15 00:28:53 2003 UTC (21 years, 1 month ago) by ho
Branch: MAIN
Changes since 1.31: +4 -3 lines
Diff to previous 1.31 (colored)

Start of privilege separation for isakmpd.
There are some kinks left, so keep it default disabled for now.
markus@ says ok to commit.

Revision 1.31 / (download) - annotate - [select for diffs], Sun Apr 27 11:16:24 2003 UTC (21 years, 1 month ago) by ho
Branch: MAIN
Changes since 1.30: +7 -6 lines
Diff to previous 1.30 (colored)

Make the 'C set' FIFO command work as expected. PR#3148.

Revision 1.30 / (download) - annotate - [select for diffs], Sun Jun 9 08:13:07 2002 UTC (22 years ago) by todd
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

rm trailing whitespace

Revision 1.29 / (download) - annotate - [select for diffs], Sat Jun 1 07:44:22 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.28: +6 -4 lines
Diff to previous 1.28 (colored)

size_t must be cast to (unsigned long) and printed using %lu

Revision 1.28 / (download) - annotate - [select for diffs], Tue Mar 19 04:00:59 2002 UTC (22 years, 2 months ago) by angelos
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.27: +1 -3 lines
Diff to previous 1.27 (colored)

Remove unnecessary prototype.

Revision 1.27 / (download) - annotate - [select for diffs], Sun Mar 17 21:48:06 2002 UTC (22 years, 2 months ago) by angelos
Branch: MAIN
Changes since 1.26: +30 -1 lines
Diff to previous 1.26 (colored)

Add 'T' and 'S' commands (for tearing-down and reporting all Phase 2
SAs), from bdallen@nps.navy.mil

Revision 1.26 / (download) - annotate - [select for diffs], Tue Dec 11 01:43:54 2001 UTC (22 years, 6 months ago) by ho
Branch: MAIN
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

Proper error msg.

Revision 1.25 / (download) - annotate - [select for diffs], Mon Dec 10 03:34:51 2001 UTC (22 years, 6 months ago) by ho
Branch: MAIN
Changes since 1.24: +6 -1 lines
Diff to previous 1.24 (colored)

Add UI option 'R' to trigger isakmpd reinit (same as SIGHUP).

Revision 1.24 / (download) - annotate - [select for diffs], Mon Dec 3 16:17:17 2001 UTC (22 years, 6 months ago) by ho
Branch: MAIN
Changes since 1.23: +2 -3 lines
Diff to previous 1.23 (colored)

Change UI fifo open to O_RDWR to avoid problems on some OSes (such as
FreeBSD). Reported by Tariq Rashid <tariq@inty.net>.

Revision 1.23 / (download) - annotate - [select for diffs], Thu Nov 22 11:10:45 2001 UTC (22 years, 6 months ago) by ho
Branch: MAIN
Changes since 1.22: +1 -3 lines
Diff to previous 1.22 (colored)

Nit.

Revision 1.22 / (download) - annotate - [select for diffs], Fri Oct 5 08:18:37 2001 UTC (22 years, 8 months ago) by ho
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.21: +26 -4 lines
Diff to previous 1.21 (colored)

Extend the FIFO ui with the 'D A <level>' (to set all debug levels) and
'D T' (to toggle all logging on and off) commands. niklas@ ok.

Revision 1.21 / (download) - annotate - [select for diffs], Fri Aug 24 13:53:02 2001 UTC (22 years, 9 months ago) by ho
Branch: MAIN
Changes since 1.20: +26 -7 lines
Diff to previous 1.20 (colored)

Send DELETE notifications for all active SAs when we shut down the daemon.
This "clean" shutdown happens on SIGTERM ('kill <pid>') or if a 'Q' command
is input to the fifo UI. Suggested by <Ghislaine.Labouret@hsc.fr>.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jul 6 14:37:12 2001 UTC (22 years, 11 months ago) by ho
Branch: MAIN
Changes since 1.19: +3 -3 lines
Diff to previous 1.19 (colored)

Style.

Revision 1.17.2.1 / (download) - annotate - [select for diffs], Tue May 8 12:45:26 2001 UTC (23 years, 1 month ago) by ho
Branch: OPENBSD_2_8
Changes since 1.17: +39 -2 lines
Diff to previous 1.17 (colored) next main 1.18 (colored)

Pull in isakmpd from 2.9 to 2.8 branch.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Apr 30 12:16:44 2001 UTC (23 years, 1 month ago) by ho
Branch: MAIN
Changes since 1.18: +7 -2 lines
Diff to previous 1.18 (colored)

Be more verbose about fifo ui operations.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Apr 9 21:21:57 2001 UTC (23 years, 2 months ago) by ho
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.17: +33 -1 lines
Diff to previous 1.17 (colored)

isakmpd can now capture un-encrypted IKE negotiation packets to a
file. In pcap(3) format, so tcpdump(8) can read it.
Idea by Tim Newsham <newsham@lava.net>, work by him and me.
Ok angelos@, niklas@

Revision 1.17 / (download) - annotate - [select for diffs], Sat Oct 7 06:57:25 2000 UTC (23 years, 8 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE
Branch point for: OPENBSD_2_8
Changes since 1.16: +4 -3 lines
Diff to previous 1.16 (colored)

Merge with EOM 1.43

author: niklas
missing arg

author: ho
(c)-2000

Revision 1.16 / (download) - annotate - [select for diffs], Tue May 2 14:37:00 2000 UTC (24 years, 1 month ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.15: +4 -3 lines
Diff to previous 1.15 (colored)

conf.h: Merge with EOM 1.11
ui.c: Merge with EOM 1.41

author: niklas
From ho: provide defaults for requested transforms, shortens config files
vastly.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Apr 7 22:10:30 2000 UTC (24 years, 2 months ago) by niklas
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

conf.c: Merge with EOM 1.22
gmp_util.c: Merge with EOM 1.5
gmp_util.h: Merge with EOM 1.3
math_mp.h: Merge with EOM 1.2
sa.c: Merge with EOM 1.101
ui.c: Merge with EOM 1.40

author: niklas
(c) 2000

Revision 1.14 / (download) - annotate - [select for diffs], Fri Apr 7 22:06:44 2000 UTC (24 years, 2 months ago) by niklas
Branch: MAIN
Changes since 1.13: +9 -8 lines
Diff to previous 1.13 (colored)

conf.c: Merge with EOM 1.21
isakmpd.c: Merge with EOM 1.46
sa.c: Merge with EOM 1.100
ui.c: Merge with EOM 1.39

author: niklas
error message style

Revision 1.13 / (download) - annotate - [select for diffs], Wed Mar 8 08:42:38 2000 UTC (24 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.12: +4 -4 lines
Diff to previous 1.12 (colored)

Merge with EOM 1.38

author: niklas
Comparison to wrong var, fix by rayl@mail.com

Revision 1.12 / (download) - annotate - [select for diffs], Fri Feb 25 17:23:42 2000 UTC (24 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.11: +6 -2 lines
Diff to previous 1.11 (colored)

regress/crypto/Makefile: Merge with EOM 1.5
regress/dh/Makefile: Merge with EOM 1.7
regress/group/Makefile: Merge with EOM 1.9
regress/prf/Makefile: Merge with EOM 1.4
regress/rsakeygen/Makefile: Merge with EOM 1.8
regress/x509/Makefile: Merge with EOM 1.10
Makefile: Merge with EOM 1.62
attribute.c: Merge with EOM 1.10
sa.c: Merge with EOM 1.99
conf.c: Merge with EOM 1.20
crypto.c: Merge with EOM 1.28
isakmpd.c: Merge with EOM 1.45
connection.c: Merge with EOM 1.19
doi.h: Merge with EOM 1.28
field.c: Merge with EOM 1.11
exchange.c: Merge with EOM 1.116
ike_auth.c: Merge with EOM 1.44
pf_key_v2.c: Merge with EOM 1.37
ike_phase_1.c: Merge with EOM 1.22
ipsec.c: Merge with EOM 1.118
isakmp_doi.c: Merge with EOM 1.40
log.c: Merge with EOM 1.26
log.h: Merge with EOM 1.18
math_group.c: Merge with EOM 1.23
message.c: Merge with EOM 1.144
pf_encap.c: Merge with EOM 1.70
policy.c: Merge with EOM 1.18
timer.c: Merge with EOM 1.13
transport.c: Merge with EOM 1.41
udp.c: Merge with EOM 1.47
ui.c: Merge with EOM 1.37
x509.c: Merge with EOM 1.36

author: niklas
Made debug logging a compile time selectable feature

Revision 1.11 / (download) - annotate - [select for diffs], Thu Aug 26 22:29:57 1999 UTC (24 years, 9 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.10: +13 -2 lines
Diff to previous 1.10 (colored)

Merge with EOM 1.36

author: ho
style

author: ho
Don't accidentally overwrite files with the FIFO.

Revision 1.10 / (download) - annotate - [select for diffs], Thu Aug 5 22:41:08 1999 UTC (24 years, 10 months ago) by niklas
Branch: MAIN
Changes since 1.9: +52 -2 lines
Diff to previous 1.9 (colored)

DESIGN-NOTES: Merge with EOM 1.47
conf.c: Merge with EOM 1.19
conf.h: Merge with EOM 1.10
ui.c: Merge with EOM 1.34

author: niklas
Dynamic updates of the configuration database is now possible, either through
ui, or through the new conf_* API described in DESIGN-NOTES

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jun 2 06:29:55 1999 UTC (25 years ago) by niklas
Branch: MAIN
Changes since 1.8: +4 -2 lines
Diff to previous 1.8 (colored)

Merge with EOM 1.33

author: ho
Add connection_report

Revision 1.8 / (download) - annotate - [select for diffs], Sat May 1 20:43:46 1999 UTC (25 years, 1 month ago) by niklas
Branch: MAIN
Changes since 1.7: +29 -4 lines
Diff to previous 1.7 (colored)

sysdep/openbsd/sysdep.c: Merge with EOM 1.7
DESIGN-NOTES: Merge with EOM 1.42
Makefile: Merge with EOM 1.51
app.c: Merge with EOM 1.6
conf.c: Merge with EOM 1.18
init.c: Merge with EOM 1.14
isakmpd.conf.5: Merge with EOM 1.19
pf_encap.c: Merge with EOM 1.64
pf_encap.h: Merge with EOM 1.12
pf_key_v2.h: Merge with EOM 1.3
sysdep.h: Merge with EOM 1.16
transport.c: Merge with EOM 1.40
ui.c: Merge with EOM 1.32

author: niklas
A new connection abstraction

Revision 1.7 / (download) - annotate - [select for diffs], Mon Apr 19 21:10:21 1999 UTC (25 years, 1 month ago) by niklas
Branch: MAIN
Changes since 1.6: +6 -3 lines
Diff to previous 1.6 (colored)

./ui.c: Merge with EOM 1.31

Added timer_report

Add call to transport_report

1999 copyrights

Revision 1.6 / (download) - annotate - [select for diffs], Wed Mar 24 15:00:17 1999 UTC (25 years, 2 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored)

Merge with EOM 1.28
old connect has disappeared

Revision 1.5 / (download) - annotate - [select for diffs], Fri Feb 26 03:52:22 1999 UTC (25 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.4: +5 -2 lines
Diff to previous 1.4 (colored)

Merge from the Ericsson repository
| revision 1.27
| date: 1999/02/25 11:39:26;  author: niklas;  state: Exp;  lines: +4 -1
| include sysdep.h everywhere
| ----------------------------

Revision 1.4 / (download) - annotate - [select for diffs], Mon Dec 21 01:02:27 1998 UTC (25 years, 5 months ago) by niklas
Branch: MAIN
Changes since 1.3: +11 -64 lines
Diff to previous 1.3 (colored)

Last months worth of work on isakmpd, lots done

Revision 1.3 / (download) - annotate - [select for diffs], Tue Nov 17 11:10:21 1998 UTC (25 years, 6 months ago) by niklas
Branch: MAIN
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (colored)

Add RCS Ids from the EOM repository

Revision 1.2 / (download) - annotate - [select for diffs], Sun Nov 15 00:44:04 1998 UTC (25 years, 6 months ago) by niklas
Branch: MAIN
Changes since 1.1: +1 -1 lines
Diff to previous 1.1 (colored)

openBSD RCS IDs

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Nov 15 00:03:49 1998 UTC (25 years, 6 months ago) by niklas
Branch: NIKLAS
CVS Tags: NIKLAS_981114
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of isakmpd, an IKE (ISAKMP/Oakley) implementation for the
OpenBSD IPSEC stack by me, Niklas Hallqvist and Niels Provos, funded by
Ericsson Radio Systems.  It is not yet complete or usable in a real scenario
but the missing pieces will soon be there.  The early commit is for people
who wants early access and who are not afraid of looking at source.
isakmpd interops with Cisco, Timestep, SSH & Pluto (Linux FreeS/WAN) so
far, so it is not that incomplete.  It is really mostly configuration that
is lacking.

Revision 1.1 / (download) - annotate - [select for diffs], Sun Nov 15 00:03:49 1998 UTC (25 years, 6 months ago) by niklas
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.