summaryrefslogtreecommitdiff
path: root/usr.sbin/iscsid/log.h
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2010-09-24 09:43:20 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2010-09-24 09:43:20 +0000
commite05054b36677ef6434742798ae152706b6912c4d (patch)
treef6987aa6d3038e4f47ff7a0af7689ddcb294132f /usr.sbin/iscsid/log.h
parent87fa355d9467034581950b4117118addb4e6c565 (diff)
iSCSI Initiatior daemon using vscsi(4).
Currently implements the absolute minimum of the protocol to make it work against targets. Many things still in flux but we're annoyed to work outside of the tree. Commited from a source tree on an iSCSI disk served via iscsid but it is not yet production ready. OK dlg@, matthew@, deraadt@
Diffstat (limited to 'usr.sbin/iscsid/log.h')
-rw-r--r--usr.sbin/iscsid/log.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/usr.sbin/iscsid/log.h b/usr.sbin/iscsid/log.h
new file mode 100644
index 00000000000..a8658ea2223
--- /dev/null
+++ b/usr.sbin/iscsid/log.h
@@ -0,0 +1,35 @@
+/* $OpenBSD: log.h,v 1.1 2010/09/24 09:43:19 claudio Exp $ */
+
+/*
+ * 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 _LOG_H_
+#define _LOG_H_
+
+#include <stdarg.h>
+
+void log_init(int);
+void vlog(int, const char *, va_list);
+void log_warn(const char *, ...);
+void log_warnx(const char *, ...);
+void log_info(const char *, ...);
+void log_debug(const char *, ...);
+void fatal(const char *) __dead;
+void fatalx(const char *) __dead;
+void log_hexdump(void *, size_t);
+void log_pdu(struct pdu *, int);
+
+#endif /* _LOG_H_ */