]> git.armaanb.net Git - opendoas.git/blobdiff - doas.h
timestamp: error out if fstat and lstat st_ino and st_dev are not the same
[opendoas.git] / doas.h
diff --git a/doas.h b/doas.h
index 70005eec8cb05ed9ca751ca902ea2205837c9bcc..48069dbbace38d37580d61f6257398c9253a449f 100644 (file)
--- a/doas.h
+++ b/doas.h
@@ -1,4 +1,19 @@
-/* $OpenBSD: doas.h,v 1.5 2016/06/05 00:46:34 djm Exp $ */
+/* $OpenBSD$ */
+/*
+ * Copyright (c) 2015 Ted Unangst <tedu@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.
+ */
 
 struct rule {
        int action;
@@ -8,18 +23,17 @@ struct rule {
        const char *cmd;
        const char **cmdargs;
        const char **envlist;
-       const char **setenvlist;
 };
 
 extern struct rule **rules;
-extern int nrules, maxrules;
+extern int nrules;
 extern int parse_errors;
 
-size_t arraylen(const char **);
+char **prepenv(const struct rule *);
 
 #define PERMIT 1
 #define DENY   2
 
 #define NOPASS         0x1
 #define KEEPENV                0x2
-#define SETENV         0x4
+#define PERSIST                0x4