summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldpctl/parser.h
diff options
context:
space:
mode:
authormichele <michele@openbsd.org>2009-06-01 20:59:45 +0000
committermichele <michele@openbsd.org>2009-06-01 20:59:45 +0000
commitab0c248656ac0668050c7a33426a8601fb55b34d (patch)
tree13e0cff0d7711ce61dc2a973f9b9a6a9d3a032b5 /usr.sbin/ldpctl/parser.h
parentDeal with wraparound when checking RLIMIT_DATA. (diff)
downloadwireguard-openbsd-ab0c248656ac0668050c7a33426a8601fb55b34d.tar.xz
wireguard-openbsd-ab0c248656ac0668050c7a33426a8601fb55b34d.zip
Welcome ldpd, the Label Distribution Protocol daemon.
Built using the imsg/three process framework, its main aim is to redistribute MPLS labels between peers. Right now it has some really basic functionalities, the basic protocol works and peers are able to exchange labels and insert them in the kernel. It still does not react to changes of topology. Not yet connected to the builds. ok claudio@ deraadt@
Diffstat (limited to 'usr.sbin/ldpctl/parser.h')
-rw-r--r--usr.sbin/ldpctl/parser.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/usr.sbin/ldpctl/parser.h b/usr.sbin/ldpctl/parser.h
new file mode 100644
index 00000000000..b05a9a7af23
--- /dev/null
+++ b/usr.sbin/ldpctl/parser.h
@@ -0,0 +1,57 @@
+/* $OpenBSD: parser.h,v 1.1 2009/06/01 20:59:45 michele Exp $ */
+
+/*
+ * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
+ * Copyright (c) 2004 Esben Norby <norby@openbsd.org>
+ * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef _PARSER_H_
+#define _PARSER_H_
+
+#include <sys/types.h>
+#include <net/if.h>
+#include <netinet/in.h>
+
+enum actions {
+ NONE,
+ LFIB,
+ LFIB_COUPLE,
+ LFIB_DECOUPLE,
+ SHOW,
+ SHOW_IFACE,
+ SHOW_NBR,
+ SHOW_LIB,
+ SHOW_LFIB,
+ SHOW_LFIB_IFACE,
+ RELOAD
+};
+
+struct parse_result {
+ struct in_addr addr;
+ char ifname[IF_NAMESIZE];
+ int flags;
+ enum actions action;
+ u_int8_t prefixlen;
+};
+
+struct parse_result *parse(int, char *[]);
+const struct token *match_token(const char *, const struct token []);
+void show_valid_args(const struct token []);
+int parse_addr(const char *, struct in_addr *);
+int parse_prefix(const char *, struct in_addr *,
+ u_int8_t *);
+
+#endif /* _PARSER_H_ */