summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2000-05-02 14:35:28 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2000-05-02 14:35:28 +0000
commitf190e3d77735c26540835b3afce72d989e1a191f (patch)
treee8fd53b4891eb0e3803c7e9c72171fe21d452db8 /sbin
parent9d23781551c03927163dbe878fb4330a7d511834 (diff)
Merge with EOM 1.26
author: niklas style author: angelos Move POLICY_FILE_DEFAULT definition to the .h file. author: angelos Add etherip and protocol numbers in the transport protocol entries, document.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/isakmpd/policy.c47
1 files changed, 36 insertions, 11 deletions
diff --git a/sbin/isakmpd/policy.c b/sbin/isakmpd/policy.c
index 401ce805f6c..47fc5b15036 100644
--- a/sbin/isakmpd/policy.c
+++ b/sbin/isakmpd/policy.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: policy.c,v 1.11 2000/04/07 22:50:02 niklas Exp $ */
-/* $EOM: policy.c,v 1.23 2000/04/07 22:44:25 angelos Exp $ */
+/* $OpenBSD: policy.c,v 1.12 2000/05/02 14:35:27 niklas Exp $ */
+/* $EOM: policy.c,v 1.26 2000/05/01 19:52:50 niklas Exp $ */
/*
* Copyright (c) 1999, 2000 Angelos D. Keromytis. All rights reserved.
@@ -76,10 +76,6 @@
#include "util.h"
#include "policy.h"
-#ifndef POLICY_FILE_DEFAULT
-#define POLICY_FILE_DEFAULT "/etc/isakmpd/isakmpd.policy"
-#endif /* POLICY_FILE_DEFAULT */
-
#if defined (HAVE_DLOPEN) && !defined (USE_KEYNOTE) && 0
void *libkeynote = 0;
@@ -182,6 +178,8 @@ policy_callback (char *name)
static char remote_id_addr_lower[64], *remote_id_proto, remote_id_port[32];
static char remote_filter_port[32], local_filter_port[32];
static char *remote_filter_proto, *local_filter_proto, *pfs, *initiator;
+ static char remote_filter_proto_num[3], local_filter_proto_num[3];
+ static char remote_id_proto_num[3];
/* Allocated. */
static char *remote_filter = 0, *local_filter = 0, *remote_id = 0;
@@ -770,6 +768,15 @@ policy_callback (char *name)
case IPPROTO_UDP:
remote_id_proto = "udp";
break;
+
+ case IPPROTO_ETHERIP:
+ remote_id_proto = "etherip";
+ break;
+
+ default:
+ sprintf (remote_id_proto_num, "%2d", id[1]);
+ remote_id_proto = remote_id_proto_num;
+ break;
}
snprintf (remote_id_port, sizeof remote_id_port - 1, "%d",
@@ -937,6 +944,15 @@ policy_callback (char *name)
case IPPROTO_UDP:
remote_filter_proto = "udp";
break;
+
+ case IPPROTO_ETHERIP:
+ remote_filter_proto = "etherip";
+ break;
+
+ default:
+ sprintf (remote_filter_proto_num, "%2d", id[1]);
+ remote_filter_proto = remote_filter_proto_num;
+ break;
}
snprintf (remote_filter_port, sizeof remote_filter_port - 1,
@@ -1106,6 +1122,15 @@ policy_callback (char *name)
case IPPROTO_UDP:
local_filter_proto = "udp";
break;
+
+ case IPPROTO_ETHERIP:
+ local_filter_proto = "etherip";
+ break;
+
+ default:
+ sprintf (local_filter_proto_num, "%2d", id[1]);
+ local_filter_proto = local_filter_proto_num;
+ break;
}
snprintf (local_filter_port, sizeof local_filter_port - 1,
@@ -1192,15 +1217,15 @@ policy_callback (char *name)
if (strcmp (name, "GMTTimeOfDay") == 0)
{
- tt = time((time_t) NULL);
- strftime (mytimeofday, 14, "%G%m%d%H%M%S", gmtime(&tt));
+ tt = time ((time_t) NULL);
+ strftime (mytimeofday, 14, "%G%m%d%H%M%S", gmtime (&tt));
return mytimeofday;
}
if (strcmp (name, "LocalTimeOfDay") == 0)
{
- tt = time((time_t) NULL);
- strftime (mytimeofday, 14, "%G%m%d%H%M%S", localtime(&tt));
+ tt = time ((time_t) NULL);
+ strftime (mytimeofday, 14, "%G%m%d%H%M%S", localtime (&tt));
return mytimeofday;
}
@@ -1354,7 +1379,7 @@ policy_callback (char *name)
return "";
bad:
- policy_callback(KEYNOTE_CALLBACK_INITIALIZE);
+ policy_callback (KEYNOTE_CALLBACK_INITIALIZE);
return "";
}