File: //usr/local/ssl/share/doc/iscsi-initiator-utils-6.2.0.872/html/pylibiscsi_8c.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>libiscsi: pylibiscsi.c File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.7 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
</ul></div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul></div>
<h1>pylibiscsi.c File Reference</h1><code>#include <Python.h></code><br>
<code>#include "<a class="el" href="libiscsi_8h-source.html">libiscsi.h</a>"</code><br>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Data Structures</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structPyIscsiChapAuthInfo.html">PyIscsiChapAuthInfo</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="structPyIscsiNode.html">PyIscsiNode</a></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">PyMODINIT_FUNC </td><td class="memItemRight" valign="bottom"><a class="el" href="pylibiscsi_8c.html#8d17b3ccbdce29a4f34d474df542a0cd">initlibiscsi</a> (void)</td></tr>
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">PyTypeObject </td><td class="memItemRight" valign="bottom"><a class="el" href="pylibiscsi_8c.html#58aa7f2b360459b3fb08ff108b413c9b">PyIscsiChapAuthInfo_Type</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">PyTypeObject </td><td class="memItemRight" valign="bottom"><a class="el" href="pylibiscsi_8c.html#8afe6f6f9a6e1c899a2e4b3ac50fc4b1">PyIscsiNode_Type</a></td></tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="8d17b3ccbdce29a4f34d474df542a0cd"></a><!-- doxytag: member="pylibiscsi.c::initlibiscsi" ref="8d17b3ccbdce29a4f34d474df542a0cd" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">PyMODINIT_FUNC initlibiscsi </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Variable Documentation</h2>
<a class="anchor" name="58aa7f2b360459b3fb08ff108b413c9b"></a><!-- doxytag: member="pylibiscsi.c::PyIscsiChapAuthInfo_Type" ref="58aa7f2b360459b3fb08ff108b413c9b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">PyTypeObject <a class="el" href="pylibiscsi_8c.html#58aa7f2b360459b3fb08ff108b413c9b">PyIscsiChapAuthInfo_Type</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<b>Initial value:</b><div class="fragment"><pre class="fragment"> {
PyObject_HEAD_INIT(NULL)
.tp_name = <span class="stringliteral">"libiscsi.chapAuthInfo"</span>,
.tp_basicsize = <span class="keyword">sizeof</span> (<a class="code" href="structPyIscsiChapAuthInfo.html">PyIscsiChapAuthInfo</a>),
.tp_getset = PyIscsiChapAuthInfo_getseters,
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES |
Py_TPFLAGS_BASETYPE,
.tp_compare = (cmpfunc)PyIscsiChapAuthInfo_compare,
.tp_init = PyIscsiChapAuthInfo_init,
.tp_str = PyIscsiChapAuthInfo_str,
.tp_new = PyType_GenericNew,
.tp_doc = <span class="stringliteral">"iscsi chap authentication information."</span>,
}
</pre></div>
</div>
</div><p>
<a class="anchor" name="8afe6f6f9a6e1c899a2e4b3ac50fc4b1"></a><!-- doxytag: member="pylibiscsi.c::PyIscsiNode_Type" ref="8afe6f6f9a6e1c899a2e4b3ac50fc4b1" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">PyTypeObject <a class="el" href="pylibiscsi_8c.html#8afe6f6f9a6e1c899a2e4b3ac50fc4b1">PyIscsiNode_Type</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<b>Initial value:</b><div class="fragment"><pre class="fragment"> {
PyObject_HEAD_INIT(NULL)
.tp_name = <span class="stringliteral">"libiscsi.node"</span>,
.tp_basicsize = <span class="keyword">sizeof</span> (<a class="code" href="structPyIscsiNode.html">PyIscsiNode</a>),
.tp_getset = PyIscsiNode_getseters,
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES |
Py_TPFLAGS_BASETYPE,
.tp_methods = PyIscsiNode_methods,
.tp_compare = (cmpfunc)PyIscsiNode_compare,
.tp_init = PyIscsiNode_init,
.tp_str = PyIscsiNode_str,
.tp_new = PyType_GenericNew,
.tp_doc = <span class="stringliteral">"The iscsi node contains iscsi node information."</span>,
}
</pre></div>
</div>
</div><p>
<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 9 06:06:16 2013 for libiscsi by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address>
</body>
</html>