Wed Dec 14 07:20:31 2011 UTC ()
include inttypes.h to get the fixed size integer types - from Gregor Riepl


(agc)
diff -r1.3 -r1.4 src/external/bsd/iscsi/dist/include/iscsi.h

cvs diff -r1.3 -r1.4 src/external/bsd/iscsi/dist/include/iscsi.h (expand / switch to unified diff)

--- src/external/bsd/iscsi/dist/include/iscsi.h 2009/06/30 02:44:52 1.3
+++ src/external/bsd/iscsi/dist/include/iscsi.h 2011/12/14 07:20:31 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: iscsi.h,v 1.3 2009/06/30 02:44:52 agc Exp $ */ 1/* $NetBSD: iscsi.h,v 1.4 2011/12/14 07:20:31 agc Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2009 The NetBSD Foundation, Inc. 4 * Copyright (c) 2009 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Alistair Crooks (agc@netbsd.org) 8 * by Alistair Crooks (agc@netbsd.org)
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -21,26 +21,28 @@ @@ -21,26 +21,28 @@
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE. 29 * POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31#ifndef ISCSI_H_ 31#ifndef ISCSI_H_
32#define ISCSI_H_ 1 32#define ISCSI_H_ 1
33 33
 34#include <inttypes.h>
 35
34enum { 36enum {
35 ISCSI_MAXSOCK = 8 37 ISCSI_MAXSOCK = 8
36}; 38};
37 39
38/* variables which relate to an embedded iSCSI target */ 40/* variables which relate to an embedded iSCSI target */
39typedef struct iscsi_target_t { 41typedef struct iscsi_target_t {
40 int sockc; /* sockets where listening */ 42 int sockc; /* sockets where listening */
41 int sockv[ISCSI_MAXSOCK]; /* listening sockets */ 43 int sockv[ISCSI_MAXSOCK]; /* listening sockets */
42 int famv[ISCSI_MAXSOCK]; /* address families */ 44 int famv[ISCSI_MAXSOCK]; /* address families */
43 int state; /* current state of target */ 45 int state; /* current state of target */
44 int listener_pid; /* PID */ 46 int listener_pid; /* PID */
45 int main_pid; /* main IQN PID */ 47 int main_pid; /* main IQN PID */
46 volatile int listener_listening; /* a listener is listening? */ 48 volatile int listener_listening; /* a listener is listening? */