~ubuntu-branches/ubuntu/oneiric/open-iscsi/oneiric

« back to all changes in this revision

Viewing changes to usr/iscsid.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Zobel-Helas
  • Date: 2006-12-03 16:54:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20061203165421-udgd6i05ugt1byrh
Tags: upstream-2.0.730
ImportĀ upstreamĀ versionĀ 2.0.730

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef ISCSID_H
21
21
#define ISCSID_H
22
22
 
23
 
#include <sys/types.h>
24
 
#include <sys/ioctl.h>
25
 
 
26
 
#include "initiator.h"
27
 
#include "idbm.h"
28
 
 
29
 
#define BHS_SIZE        48
30
 
 
31
 
typedef struct iscsi_pdu {
32
 
        struct iscsi_hdr bhs;
33
 
        void *ahs;
34
 
        unsigned int ahssize;
35
 
        void *data;
36
 
        unsigned int datasize;
37
 
} iscsi_pdu_t;
38
 
 
39
23
/* IPC API */
40
24
extern struct iscsi_ipc *ipc;
41
25