Go to the source code of this file.
static PyObject* wrap_connect |
( |
PyObject * |
self, |
|
|
PyObject * |
args |
|
) |
| |
|
static |
static PyObject* wrap_disconnect |
( |
PyObject * |
self, |
|
|
PyObject * |
args |
|
) |
| |
|
static |
int wrap_pneum_callback |
( |
char * |
data, |
|
|
int |
len |
|
) |
| |
static PyObject* wrap_read |
( |
PyObject * |
self, |
|
|
PyObject * |
args |
|
) |
| |
|
static |
static PyObject* wrap_write |
( |
PyObject * |
self, |
|
|
PyObject * |
args |
|
) |
| |
|
static |
PyObject* pneum_callback = NULL |
|
static |
PyMethodDef vpp_api_Methods[] |
|
static |
Initial value:= {
{
"connect",
wrap_connect, METH_VARARGS,
"Connect to the VPP API."},
{
"disconnect",
wrap_disconnect, METH_VARARGS,
"Disconnect from the VPP API."},
{
"write",
wrap_write, METH_VARARGS,
"Write data to the VPP API."},
{
"read",
wrap_read, METH_VARARGS,
"Read data from the VPP API."},
}
static PyObject * wrap_disconnect(PyObject *self, PyObject *args)
static PyObject * wrap_write(PyObject *self, PyObject *args)
static PyObject * wrap_read(PyObject *self, PyObject *args)
static PyObject * wrap_connect(PyObject *self, PyObject *args)
Definition at line 102 of file pneum_wrap.c.