From 4e0813d1678d971bc6e023017c76bfc18a1de36c Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Wed, 19 May 2021 21:33:08 -0700 Subject: [PATCH] Add address getter method to Python wrapper --- build.sh | 7 +- include/ZeroTierSockets.h | 61 +- pkg/pypi/setup.py | 3 +- src/bindings/python/PythonSockets.cxx | 11 + src/bindings/python/PythonSockets.h | 42 + src/bindings/python/libzt.py | 115 +- src/bindings/python/node.py | 6 + src/bindings/python/zt.i | 2 + src/bindings/python/zt_wrap.cxx | 37303 ++++++++++-------------- src/bindings/python/zt_wrap.h | 63 +- test/selftest.py | 2 + 11 files changed, 15884 insertions(+), 21731 deletions(-) create mode 100644 src/bindings/python/PythonSockets.h diff --git a/build.sh b/build.sh index b3389c5..6faaa08 100755 --- a/build.sh +++ b/build.sh @@ -661,8 +661,11 @@ format-code() if [[ $1 = *"python"* ]]; then if [[ ! $($PIP list | grep black) = "" ]]; then - $PYTHON -m black src/bindings/python/*.py - $PYTHON -m black examples/python/*.py + $PYTHON -m black src/bindings/python/libzt.py + $PYTHON -m black src/bindings/python/node.py + $PYTHON -m black src/bindings/python/sockets.py + $PYTHON -m black examples/python/ + $PYTHON -m black test/selftest.py else echo "Please install python module (black)" fi diff --git a/include/ZeroTierSockets.h b/include/ZeroTierSockets.h index fdde2e4..ec196a6 100644 --- a/include/ZeroTierSockets.h +++ b/include/ZeroTierSockets.h @@ -996,48 +996,6 @@ typedef struct { int len; } zts_event_msg_t; -//----------------------------------------------------------------------------// -// Python Bindings (Subset of regular socket API) // -//----------------------------------------------------------------------------// - -#ifdef ZTS_ENABLE_PYTHON -#include "Python.h" - -/** - * Abstract class used as a director. Pointer to an instance of this class - * is provided to the Python layer. - */ -class PythonDirectorCallbackClass { - public: - /** - * Called by native code on event. Implemented in Python - */ - virtual void on_zerotier_event(zts_event_msg_t* msg); - virtual ~PythonDirectorCallbackClass() {}; -}; - -extern PythonDirectorCallbackClass* _userEventCallback; - -int zts_py_bind(int fd, int family, int type, PyObject* addro); - -int zts_py_connect(int fd, int family, int type, PyObject* addro); - -PyObject* zts_py_accept(int fd); - -int zts_py_listen(int fd, int backlog); - -PyObject* zts_py_recv(int fd, int len, int flags); - -int zts_py_send(int fd, PyObject* buf, int flags); - -int zts_py_close(int fd); - -int zts_py_setblocking(int fd, int flag); - -int zts_py_getblocking(int fd); - -#endif // ZTS_ENABLE_PYTHON - //----------------------------------------------------------------------------// // ZeroTier Service and Network Controls // //----------------------------------------------------------------------------// @@ -1274,6 +1232,24 @@ ZTS_API int ZTCALL zts_init_from_storage(const char* path); */ ZTS_API int ZTCALL zts_init_from_memory(const char* key, unsigned int len); +#ifdef ZTS_ENABLE_PYTHON +#include "Python.h" + +/** + * Abstract class used as a director. Pointer to an instance of this class + * is provided to the Python layer. + */ +class PythonDirectorCallbackClass { + public: + /** + * Called by native code on event. Implemented in Python + */ + virtual void on_zerotier_event(zts_event_msg_t* msg); + virtual ~PythonDirectorCallbackClass() {}; +}; + +extern PythonDirectorCallbackClass* _userEventCallback; + /** * @brief Set the event handler function. This is an initialization function that can only be called * before `zts_node_start()`. @@ -1283,7 +1259,6 @@ ZTS_API int ZTCALL zts_init_from_memory(const char* key, unsigned int len); * @return `ZTS_ERR_OK` if successful, `ZTS_ERR_SERVICE` if the node * experiences a problem, `ZTS_ERR_ARG` if invalid argument. */ -#ifdef ZTS_ENABLE_PYTHON ZTS_API int ZTCALL zts_init_set_event_handler(PythonDirectorCallbackClass* callback); #endif #ifdef ZTS_ENABLE_PINVOKE diff --git a/pkg/pypi/setup.py b/pkg/pypi/setup.py index c304f6e..3e33c4c 100644 --- a/pkg/pypi/setup.py +++ b/pkg/pypi/setup.py @@ -110,8 +110,7 @@ setup( keywords = 'zerotier p2p peer-to-peer sdwan sdn virtual network socket tcp udp zt encryption encrypted', py_modules = ['libzt'], packages = ['libzt'], - classifiers = ['Development Status :: 4 - Beta', - 'Topic :: Internet', + classifiers = ['Topic :: Internet', 'Topic :: System :: Networking', 'Topic :: Security :: Cryptography', 'Intended Audience :: Developers', diff --git a/src/bindings/python/PythonSockets.cxx b/src/bindings/python/PythonSockets.cxx index ff32daa..06aaa27 100644 --- a/src/bindings/python/PythonSockets.cxx +++ b/src/bindings/python/PythonSockets.cxx @@ -200,4 +200,15 @@ int zts_py_close(int fd) Py_END_ALLOW_THREADS return err; } +PyObject* zts_py_addr_get_str(uint64_t net_id, int family) +{ + char addr_str[ZTS_IP_MAX_STR_LEN] = { 0 }; + if (zts_addr_get_str(net_id, family, addr_str, ZTS_IP_MAX_STR_LEN) < 0) { + PyErr_SetString(PyExc_Warning, "No address of the given type has been assigned by the network"); + return NULL; + } + PyObject* t = PyUnicode_FromString(addr_str); + return t; +} + #endif // ZTS_ENABLE_PYTHON diff --git a/src/bindings/python/PythonSockets.h b/src/bindings/python/PythonSockets.h new file mode 100644 index 0000000..260c7df --- /dev/null +++ b/src/bindings/python/PythonSockets.h @@ -0,0 +1,42 @@ +/* + * Copyright (c)2013-2021 ZeroTier, Inc. + * + * Use of this software is governed by the Business Source License included + * in the LICENSE.TXT file in the project's root directory. + * + * Change Date: 2026-01-01 + * + * On the date above, in accordance with the Business Source License, use + * of this software will be governed by version 2.0 of the Apache License. + */ +/****/ + +#ifndef ZTS_PYTHON_SOCKETS_H +#define ZTS_PYTHON_SOCKETS_H + +#ifdef ZTS_ENABLE_PYTHON +#include "Python.h" + +int zts_py_bind(int fd, int family, int type, PyObject* addro); + +int zts_py_connect(int fd, int family, int type, PyObject* addro); + +PyObject* zts_py_accept(int fd); + +int zts_py_listen(int fd, int backlog); + +PyObject* zts_py_recv(int fd, int len, int flags); + +int zts_py_send(int fd, PyObject* buf, int flags); + +int zts_py_close(int fd); + +int zts_py_setblocking(int fd, int flag); + +int zts_py_getblocking(int fd); + +PyObject* zts_py_addr_get_str(uint64_t net_id, int family); + +#endif // ZTS_ENABLE_PYTHON + +#endif // ZTS_PYTHON_SOCKETS_H diff --git a/src/bindings/python/libzt.py b/src/bindings/python/libzt.py index f9a2792..57f2376 100755 --- a/src/bindings/python/libzt.py +++ b/src/bindings/python/libzt.py @@ -532,6 +532,25 @@ class zts_event_msg_t(object): # Register zts_event_msg_t in _libzt: _libzt.zts_event_msg_t_swigregister(zts_event_msg_t) +ZTS_DISABLE_CENTRAL_API = _libzt.ZTS_DISABLE_CENTRAL_API +ZTS_ID_STR_BUF_LEN = _libzt.ZTS_ID_STR_BUF_LEN + + +def zts_id_new(key, key_buf_len): + return _libzt.zts_id_new(key, key_buf_len) + + +def zts_id_pair_is_valid(key, len): + return _libzt.zts_id_pair_is_valid(key, len) + + +def zts_init_from_storage(path): + return _libzt.zts_init_from_storage(path) + + +def zts_init_from_memory(key, len): + return _libzt.zts_init_from_memory(key, len) + class PythonDirectorCallbackClass(object): thisown = property( @@ -566,62 +585,6 @@ class PythonDirectorCallbackClass(object): _libzt.PythonDirectorCallbackClass_swigregister(PythonDirectorCallbackClass) -def zts_py_bind(fd, family, type, addro): - return _libzt.zts_py_bind(fd, family, type, addro) - - -def zts_py_connect(fd, family, type, addro): - return _libzt.zts_py_connect(fd, family, type, addro) - - -def zts_py_accept(fd): - return _libzt.zts_py_accept(fd) - - -def zts_py_listen(fd, backlog): - return _libzt.zts_py_listen(fd, backlog) - - -def zts_py_recv(fd, len, flags): - return _libzt.zts_py_recv(fd, len, flags) - - -def zts_py_send(fd, buf, flags): - return _libzt.zts_py_send(fd, buf, flags) - - -def zts_py_close(fd): - return _libzt.zts_py_close(fd) - - -def zts_py_setblocking(fd, flag): - return _libzt.zts_py_setblocking(fd, flag) - - -def zts_py_getblocking(fd): - return _libzt.zts_py_getblocking(fd) - - -ZTS_DISABLE_CENTRAL_API = _libzt.ZTS_DISABLE_CENTRAL_API -ZTS_ID_STR_BUF_LEN = _libzt.ZTS_ID_STR_BUF_LEN - - -def zts_id_new(key, key_buf_len): - return _libzt.zts_id_new(key, key_buf_len) - - -def zts_id_pair_is_valid(key, len): - return _libzt.zts_id_pair_is_valid(key, len) - - -def zts_init_from_storage(path): - return _libzt.zts_init_from_storage(path) - - -def zts_init_from_memory(key, len): - return _libzt.zts_init_from_memory(key, len) - - def zts_init_set_event_handler(callback): return _libzt.zts_init_set_event_handler(callback) @@ -1509,3 +1472,43 @@ def zts_inet_ntop(family, src, dst, size): def zts_inet_pton(family, src, dst): return _libzt.zts_inet_pton(family, src, dst) + + +def zts_py_bind(fd, family, type, addro): + return _libzt.zts_py_bind(fd, family, type, addro) + + +def zts_py_connect(fd, family, type, addro): + return _libzt.zts_py_connect(fd, family, type, addro) + + +def zts_py_accept(fd): + return _libzt.zts_py_accept(fd) + + +def zts_py_listen(fd, backlog): + return _libzt.zts_py_listen(fd, backlog) + + +def zts_py_recv(fd, len, flags): + return _libzt.zts_py_recv(fd, len, flags) + + +def zts_py_send(fd, buf, flags): + return _libzt.zts_py_send(fd, buf, flags) + + +def zts_py_close(fd): + return _libzt.zts_py_close(fd) + + +def zts_py_setblocking(fd, flag): + return _libzt.zts_py_setblocking(fd, flag) + + +def zts_py_getblocking(fd): + return _libzt.zts_py_getblocking(fd) + + +def zts_py_addr_get_str(net_id, family): + return _libzt.zts_py_addr_get_str(net_id, family) diff --git a/src/bindings/python/node.py b/src/bindings/python/node.py index 2249af6..34fc509 100644 --- a/src/bindings/python/node.py +++ b/src/bindings/python/node.py @@ -77,3 +77,9 @@ class ZeroTierNode: def net_transport_is_ready(self, net_id): return libzt.zts_net_transport_is_ready(net_id) + + def addr_get_ipv4(self, net_id): + return libzt.zts_py_addr_get_str(net_id, libzt.ZTS_AF_INET) + + def addr_get_ipv6(self, net_id): + return libzt.zts_py_addr_get_str(net_id, libzt.ZTS_AF_INET6) diff --git a/src/bindings/python/zt.i b/src/bindings/python/zt.i index 6bba71c..faa71c0 100644 --- a/src/bindings/python/zt.i +++ b/src/bindings/python/zt.i @@ -13,6 +13,7 @@ %module libzt %{ #include "ZeroTierSockets.h" +#include "PythonSockets.h" %} %feature("director") PythonDirectorCallbackClass; @@ -35,3 +36,4 @@ %ignore zts_msghdr; %include "ZeroTierSockets.h" +%include "PythonSockets.h" diff --git a/src/bindings/python/zt_wrap.cxx b/src/bindings/python/zt_wrap.cxx index b1e3882..7a5964c 100644 --- a/src/bindings/python/zt_wrap.cxx +++ b/src/bindings/python/zt_wrap.cxx @@ -10,6 +10,8 @@ #define SWIG_PYTHON_CAST_MODE + + #ifndef SWIGPYTHON #define SWIGPYTHON #endif @@ -17,54 +19,27 @@ #define SWIG_DIRECTORS #define SWIG_PYTHON_DIRECTOR_NO_VTABLE + #ifdef __cplusplus /* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T* ptr; - SwigMovePointer(T* p) : ptr(p) - { - } - ~SwigMovePointer() - { - delete ptr; - } - SwigMovePointer& operator=(SwigMovePointer& rhs) - { - T* oldptr = ptr; - ptr = 0; - delete oldptr; - ptr = rhs.ptr; - rhs.ptr = 0; - return *this; - } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); - - public: - SwigValueWrapper() : pointer(0) - { - } - SwigValueWrapper& operator=(const T& t) - { - SwigMovePointer tmp(new T(t)); - pointer = tmp; - return *this; - } - operator T&() const - { - return *pointer.ptr; - } - T* operator&() - { - return pointer.ptr; - } +template class SwigValueWrapper { + struct SwigMovePointer { + T *ptr; + SwigMovePointer(T *p) : ptr(p) { } + ~SwigMovePointer() { delete ptr; } + SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } + } pointer; + SwigValueWrapper& operator=(const SwigValueWrapper& rhs); + SwigValueWrapper(const SwigValueWrapper& rhs); +public: + SwigValueWrapper() : pointer(0) { } + SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } + operator T&() const { return *pointer.ptr; } + T *operator&() { return pointer.ptr; } }; -template T SwigValueInit() -{ - return T(); +template T SwigValueInit() { + return T(); } #endif @@ -75,112 +50,112 @@ template T SwigValueInit() /* template workaround for compilers that cannot correctly implement the C++ standard */ #ifndef SWIGTEMPLATEDISAMBIGUATOR -#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -#define SWIGTEMPLATEDISAMBIGUATOR template -#elif defined(__HP_aCC) +# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) +# define SWIGTEMPLATEDISAMBIGUATOR template +# elif defined(__HP_aCC) /* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ /* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -#define SWIGTEMPLATEDISAMBIGUATOR template -#else -#define SWIGTEMPLATEDISAMBIGUATOR -#endif +# define SWIGTEMPLATEDISAMBIGUATOR template +# else +# define SWIGTEMPLATEDISAMBIGUATOR +# endif #endif /* inline attribute */ #ifndef SWIGINLINE -#if defined(__cplusplus) || (defined(__GNUC__) && ! defined(__STRICT_ANSI__)) -#define SWIGINLINE inline -#else -#define SWIGINLINE -#endif +# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) +# define SWIGINLINE inline +# else +# define SWIGINLINE +# endif #endif /* attribute recognised by some compilers to avoid 'unused' warnings */ #ifndef SWIGUNUSED -#if defined(__GNUC__) -#if ! (defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -#define SWIGUNUSED __attribute__((__unused__)) -#else -#define SWIGUNUSED -#endif -#elif defined(__ICC) -#define SWIGUNUSED __attribute__((__unused__)) -#else -#define SWIGUNUSED -#endif +# if defined(__GNUC__) +# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +# elif defined(__ICC) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif #endif #ifndef SWIG_MSC_UNSUPPRESS_4505 -#if defined(_MSC_VER) -#pragma warning(disable : 4505) /* unreferenced local function has been removed */ -#endif +# if defined(_MSC_VER) +# pragma warning(disable : 4505) /* unreferenced local function has been removed */ +# endif #endif #ifndef SWIGUNUSEDPARM -#ifdef __cplusplus -#define SWIGUNUSEDPARM(p) -#else -#define SWIGUNUSEDPARM(p) p SWIGUNUSED -#endif +# ifdef __cplusplus +# define SWIGUNUSEDPARM(p) +# else +# define SWIGUNUSEDPARM(p) p SWIGUNUSED +# endif #endif /* internal SWIG method */ #ifndef SWIGINTERN -#define SWIGINTERN static SWIGUNUSED +# define SWIGINTERN static SWIGUNUSED #endif /* internal inline SWIG method */ #ifndef SWIGINTERNINLINE -#define SWIGINTERNINLINE SWIGINTERN SWIGINLINE +# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE #endif /* exporting methods */ #if defined(__GNUC__) -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -#ifndef GCC_HASCLASSVISIBILITY -#define GCC_HASCLASSVISIBILITY -#endif -#endif +# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +# ifndef GCC_HASCLASSVISIBILITY +# define GCC_HASCLASSVISIBILITY +# endif +# endif #endif #ifndef SWIGEXPORT -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -#if defined(STATIC_LINKED) -#define SWIGEXPORT -#else -#define SWIGEXPORT __declspec(dllexport) -#endif -#else -#if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -#define SWIGEXPORT __attribute__((visibility("default"))) -#else -#define SWIGEXPORT -#endif -#endif +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# if defined(STATIC_LINKED) +# define SWIGEXPORT +# else +# define SWIGEXPORT __declspec(dllexport) +# endif +# else +# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) +# define SWIGEXPORT __attribute__ ((visibility("default"))) +# else +# define SWIGEXPORT +# endif +# endif #endif /* calling conventions for Windows */ #ifndef SWIGSTDCALL -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -#define SWIGSTDCALL __stdcall -#else -#define SWIGSTDCALL -#endif +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# define SWIGSTDCALL __stdcall +# else +# define SWIGSTDCALL +# endif #endif /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if ! defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && ! defined(_CRT_SECURE_NO_DEPRECATE) -#define _CRT_SECURE_NO_DEPRECATE +#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) +# define _CRT_SECURE_NO_DEPRECATE #endif /* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if ! defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && ! defined(_SCL_SECURE_NO_DEPRECATE) -#define _SCL_SECURE_NO_DEPRECATE +#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) +# define _SCL_SECURE_NO_DEPRECATE #endif /* Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework */ -#if defined(__APPLE__) && ! defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES) -#define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0 +#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES) +# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0 #endif /* Intel's compiler complains if a variable which was never initialised is @@ -189,21 +164,22 @@ template T SwigValueInit() * See: https://github.com/swig/swig/issues/192 for more discussion. */ #ifdef __INTEL_COMPILER -#pragma warning disable 592 +# pragma warning disable 592 #endif -#if defined(__GNUC__) && defined(_WIN32) && ! defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND) + +#if defined(__GNUC__) && defined(_WIN32) && !defined(SWIG_PYTHON_NO_HYPOT_WORKAROUND) /* Workaround for '::hypot' has not been declared', see https://bugs.python.org/issue11566 */ -#include +# include #endif #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG) /* Use debug wrappers with the Python release dll */ -#undef _DEBUG -#include -#define _DEBUG 1 +# undef _DEBUG +# include +# define _DEBUG 1 #else -#include +# include #endif /* ----------------------------------------------------------------------------- @@ -219,11 +195,11 @@ template T SwigValueInit() /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ #ifdef SWIG_TYPE_TABLE -#define SWIG_QUOTE_STRING(x) #x -#define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -#define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) +# define SWIG_QUOTE_STRING(x) #x +# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) +# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) #else -#define SWIG_TYPE_TABLE_NAME +# define SWIG_TYPE_TABLE_NAME #endif /* @@ -236,25 +212,26 @@ template T SwigValueInit() */ #ifndef SWIGRUNTIME -#define SWIGRUNTIME SWIGINTERN +# define SWIGRUNTIME SWIGINTERN #endif #ifndef SWIGRUNTIMEINLINE -#define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE +# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE #endif /* Generic buffer size */ #ifndef SWIG_BUFFER_SIZE -#define SWIG_BUFFER_SIZE 1024 +# define SWIG_BUFFER_SIZE 1024 #endif /* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 -#define SWIG_POINTER_NO_NULL 0x4 +#define SWIG_POINTER_DISOWN 0x1 +#define SWIG_CAST_NEW_MEMORY 0x2 +#define SWIG_POINTER_NO_NULL 0x4 /* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 +#define SWIG_POINTER_OWN 0x1 + /* Flags/methods for returning states. @@ -291,7 +268,7 @@ template T SwigValueInit() // success code if (SWIG_IsNewObj(res) { ... - delete *ptr; + delete *ptr; } else { ... } @@ -335,90 +312,89 @@ template T SwigValueInit() just use the SWIG_AddCast()/SWIG_CheckState() */ -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) +#define SWIG_OK (0) +#define SWIG_ERROR (-1) +#define SWIG_IsOK(r) (r >= 0) +#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) /* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) +#define SWIG_CASTRANKLIMIT (1 << 8) /* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) +#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) /* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) +#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) /* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) +#define SWIG_BADOBJ (SWIG_ERROR) +#define SWIG_OLDOBJ (SWIG_OK) +#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) +#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) /* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) +#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) +#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) +#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) +#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) +#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) +#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) /* Cast-Rank Mode */ #if defined(SWIG_CASTRANK_MODE) -#ifndef SWIG_TypeRank -#define SWIG_TypeRank unsigned long -#endif -#ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -#define SWIG_MAXCASTRANK (2) -#endif -#define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT)-1) -#define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) -{ - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; +# ifndef SWIG_TypeRank +# define SWIG_TypeRank unsigned long +# endif +# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ +# define SWIG_MAXCASTRANK (2) +# endif +# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) +# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) +SWIGINTERNINLINE int SWIG_AddCast(int r) { + return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; } -SWIGINTERNINLINE int SWIG_CheckState(int r) -{ - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; +SWIGINTERNINLINE int SWIG_CheckState(int r) { + return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; } #else /* no cast-rank mode */ -#define SWIG_AddCast(r) (r) -#define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) +# define SWIG_AddCast(r) (r) +# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) #endif + #include #ifdef __cplusplus extern "C" { #endif -typedef void* (*swig_converter_func)(void*, int*); -typedef struct swig_type_info* (*swig_dycast_func)(void**); +typedef void *(*swig_converter_func)(void *, int *); +typedef struct swig_type_info *(*swig_dycast_func)(void **); /* Structure to store information on one type */ typedef struct swig_type_info { - const char* name; /* mangled name of this type */ - const char* str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info* cast; /* linked list of types that can cast into this type */ - void* clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ + const char *name; /* mangled name of this type */ + const char *str; /* human readable name of this type */ + swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ + struct swig_cast_info *cast; /* linked list of types that can cast into this type */ + void *clientdata; /* language specific type data */ + int owndata; /* flag if the structure owns the clientdata */ } swig_type_info; /* Structure to store a type and conversion function used for casting */ typedef struct swig_cast_info { - swig_type_info* type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info* next; /* pointer to next cast in linked list */ - struct swig_cast_info* prev; /* pointer to the previous cast */ + swig_type_info *type; /* pointer to type that is equivalent to this type */ + swig_converter_func converter; /* function to cast the void pointers */ + struct swig_cast_info *next; /* pointer to next cast in linked list */ + struct swig_cast_info *prev; /* pointer to the previous cast */ } swig_cast_info; /* Structure used to store module information * Each module generates one structure like this, and the runtime collects * all of these structures and stores them in a circularly linked list.*/ typedef struct swig_module_info { - swig_type_info** types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info* next; /* Pointer to next element in circularly linked list */ - swig_type_info** type_initial; /* Array of initially generated type structures */ - swig_cast_info** cast_initial; /* Array of initially generated casting structures */ - void* clientdata; /* Language specific module data */ + swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ + size_t size; /* Number of types in this module */ + struct swig_module_info *next; /* Pointer to next element in circularly linked list */ + swig_type_info **type_initial; /* Array of initially generated type structures */ + swig_cast_info **cast_initial; /* Array of initially generated casting structures */ + void *clientdata; /* Language specific module data */ } swig_module_info; /* @@ -428,184 +404,174 @@ typedef struct swig_module_info { Return 0 when the two name types are equivalent, as in strncmp, but skipping ' '. */ -SWIGRUNTIME int SWIG_TypeNameComp(const char* f1, const char* l1, const char* f2, const char* l2) -{ - for (; (f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) - ++f1; - while ((*f2 == ' ') && (f2 != l2)) - ++f2; - if (*f1 != *f2) - return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); +SWIGRUNTIME int +SWIG_TypeNameComp(const char *f1, const char *l1, + const char *f2, const char *l2) { + for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { + while ((*f1 == ' ') && (f1 != l1)) ++f1; + while ((*f2 == ' ') && (f2 != l2)) ++f2; + if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; + } + return (int)((l1 - f1) - (l2 - f2)); } /* Check type equivalence in a name list like ||... Return 0 if equal, -1 if nb < tb, 1 if nb > tb */ -SWIGRUNTIME int SWIG_TypeCmp(const char* nb, const char* tb) -{ - int equiv = 1; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (equiv != 0 && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') - break; - } - equiv = SWIG_TypeNameComp(nb, ne, tb, te); - if (*ne) - ++ne; +SWIGRUNTIME int +SWIG_TypeCmp(const char *nb, const char *tb) { + int equiv = 1; + const char* te = tb + strlen(tb); + const char* ne = nb; + while (equiv != 0 && *ne) { + for (nb = ne; *ne; ++ne) { + if (*ne == '|') break; } - return equiv; + equiv = SWIG_TypeNameComp(nb, ne, tb, te); + if (*ne) ++ne; + } + return equiv; } /* Check type equivalence in a name list like ||... Return 0 if not equal, 1 if equal */ -SWIGRUNTIME int SWIG_TypeEquiv(const char* nb, const char* tb) -{ - return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0; +SWIGRUNTIME int +SWIG_TypeEquiv(const char *nb, const char *tb) { + return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0; } /* Check the typename */ -SWIGRUNTIME swig_cast_info* SWIG_TypeCheck(const char* c, swig_type_info* ty) -{ - if (ty) { - swig_cast_info* iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) - ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheck(const char *c, swig_type_info *ty) { + if (ty) { + swig_cast_info *iter = ty->cast; + while (iter) { + if (strcmp(iter->type->name, c) == 0) { + if (iter == ty->cast) + return iter; + /* Move iter to the top of the linked list */ + iter->prev->next = iter->next; + if (iter->next) + iter->next->prev = iter->prev; + iter->next = ty->cast; + iter->prev = 0; + if (ty->cast) ty->cast->prev = iter; + ty->cast = iter; + return iter; + } + iter = iter->next; } - return 0; + } + return 0; } /* Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison */ -SWIGRUNTIME swig_cast_info* SWIG_TypeCheckStruct(swig_type_info* from, swig_type_info* ty) -{ - if (ty) { - swig_cast_info* iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) - ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { + if (ty) { + swig_cast_info *iter = ty->cast; + while (iter) { + if (iter->type == from) { + if (iter == ty->cast) + return iter; + /* Move iter to the top of the linked list */ + iter->prev->next = iter->next; + if (iter->next) + iter->next->prev = iter->prev; + iter->next = ty->cast; + iter->prev = 0; + if (ty->cast) ty->cast->prev = iter; + ty->cast = iter; + return iter; + } + iter = iter->next; } - return 0; + } + return 0; } /* Cast a pointer up an inheritance hierarchy */ -SWIGRUNTIMEINLINE void* SWIG_TypeCast(swig_cast_info* ty, void* ptr, int* newmemory) -{ - return ((! ty) || (! ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); +SWIGRUNTIMEINLINE void * +SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { + return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); } /* Dynamic pointer casting. Down an inheritance hierarchy */ -SWIGRUNTIME swig_type_info* SWIG_TypeDynamicCast(swig_type_info* ty, void** ptr) -{ - swig_type_info* lastty = ty; - if (! ty || ! ty->dcast) - return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) - lastty = ty; - } - return lastty; +SWIGRUNTIME swig_type_info * +SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { + swig_type_info *lastty = ty; + if (!ty || !ty->dcast) return ty; + while (ty && (ty->dcast)) { + ty = (*ty->dcast)(ptr); + if (ty) lastty = ty; + } + return lastty; } /* Return the name associated with this type */ -SWIGRUNTIMEINLINE const char* SWIG_TypeName(const swig_type_info* ty) -{ - return ty->name; +SWIGRUNTIMEINLINE const char * +SWIG_TypeName(const swig_type_info *ty) { + return ty->name; } /* Return the pretty name associated with this type, that is an unmangled type name in a form presentable to the user. */ -SWIGRUNTIME const char* SWIG_TypePrettyName(const swig_type_info* type) -{ - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (! type) - return NULL; - if (type->str != NULL) { - const char* last_name = type->str; - const char* s; - for (s = type->str; *s; s++) - if (*s == '|') - last_name = s + 1; - return last_name; - } - else - return type->name; +SWIGRUNTIME const char * +SWIG_TypePrettyName(const swig_type_info *type) { + /* The "str" field contains the equivalent pretty names of the + type, separated by vertical-bar characters. We choose + to print the last name, as it is often (?) the most + specific. */ + if (!type) return NULL; + if (type->str != NULL) { + const char *last_name = type->str; + const char *s; + for (s = type->str; *s; s++) + if (*s == '|') last_name = s+1; + return last_name; + } + else + return type->name; } /* Set the clientdata field for a type */ -SWIGRUNTIME void SWIG_TypeClientData(swig_type_info* ti, void* clientdata) -{ - swig_cast_info* cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; +SWIGRUNTIME void +SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { + swig_cast_info *cast = ti->cast; + /* if (ti->clientdata == clientdata) return; */ + ti->clientdata = clientdata; - while (cast) { - if (! cast->converter) { - swig_type_info* tc = cast->type; - if (! tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; + while (cast) { + if (!cast->converter) { + swig_type_info *tc = cast->type; + if (!tc->clientdata) { + SWIG_TypeClientData(tc, clientdata); + } } + cast = cast->next; + } } -SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info* ti, void* clientdata) -{ - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; +SWIGRUNTIME void +SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { + SWIG_TypeClientData(ti, clientdata); + ti->owndata = 1; } /* @@ -616,43 +582,40 @@ SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info* ti, void* clientdata) Note: if start == end at the beginning of the function, we go all the way around the circular list. */ -SWIGRUNTIME swig_type_info* -SWIG_MangledTypeQueryModule(swig_module_info* start, swig_module_info* end, const char* name) -{ - swig_module_info* iter = start; - do { - if (iter->size) { - size_t l = 0; - size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - size_t i = (l + r) >> 1; - const char* iname = iter->types[i]->name; - if (iname) { - int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } - else if (compare < 0) { - if (i) { - r = i - 1; - } - else { - break; - } - } - else if (compare > 0) { - l = i + 1; - } - } - else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; +SWIGRUNTIME swig_type_info * +SWIG_MangledTypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + swig_module_info *iter = start; + do { + if (iter->size) { + size_t l = 0; + size_t r = iter->size - 1; + do { + /* since l+r >= 0, we can (>> 1) instead (/ 2) */ + size_t i = (l + r) >> 1; + const char *iname = iter->types[i]->name; + if (iname) { + int compare = strcmp(name, iname); + if (compare == 0) { + return iter->types[i]; + } else if (compare < 0) { + if (i) { + r = i - 1; + } else { + break; + } + } else if (compare > 0) { + l = i + 1; + } + } else { + break; /* should never happen */ + } + } while (l <= r); + } + iter = iter->next; + } while (iter != end); + return 0; } /* @@ -664,134 +627,129 @@ SWIG_MangledTypeQueryModule(swig_module_info* start, swig_module_info* end, cons Note: if start == end at the beginning of the function, we go all the way around the circular list. */ -SWIGRUNTIME swig_type_info* SWIG_TypeQueryModule(swig_module_info* start, swig_module_info* end, const char* name) -{ - /* STEP 1: Search the name field using binary search */ - swig_type_info* ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } - else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info* iter = start; - do { - size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } +SWIGRUNTIME swig_type_info * +SWIG_TypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + /* STEP 1: Search the name field using binary search */ + swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); + if (ret) { + return ret; + } else { + /* STEP 2: If the type hasn't been found, do a complete search + of the str field (the human readable name) */ + swig_module_info *iter = start; + do { + size_t i = 0; + for (; i < iter->size; ++i) { + if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) + return iter->types[i]; + } + iter = iter->next; + } while (iter != end); + } - /* neither found a match */ - return 0; + /* neither found a match */ + return 0; } /* Pack binary data into a string */ -SWIGRUNTIME char* SWIG_PackData(char* c, void* ptr, size_t sz) -{ - static const char hex[17] = "0123456789abcdef"; - const unsigned char* u = (unsigned char*)ptr; - const unsigned char* eu = u + sz; - for (; u != eu; ++u) { - unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; +SWIGRUNTIME char * +SWIG_PackData(char *c, void *ptr, size_t sz) { + static const char hex[17] = "0123456789abcdef"; + const unsigned char *u = (unsigned char *) ptr; + const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + unsigned char uu = *u; + *(c++) = hex[(uu & 0xf0) >> 4]; + *(c++) = hex[uu & 0xf]; + } + return c; } /* Unpack binary data from a string */ -SWIGRUNTIME const char* SWIG_UnpackData(const char* c, void* ptr, size_t sz) -{ - unsigned char* u = (unsigned char*)ptr; - const unsigned char* eu = u + sz; - for (; u != eu; ++u) { - char d = *(c++); - unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = (unsigned char)((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = (unsigned char)((d - ('a' - 10)) << 4); - else - return (char*)0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (unsigned char)(d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (unsigned char)(d - ('a' - 10)); - else - return (char*)0; - *u = uu; - } - return c; +SWIGRUNTIME const char * +SWIG_UnpackData(const char *c, void *ptr, size_t sz) { + unsigned char *u = (unsigned char *) ptr; + const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + char d = *(c++); + unsigned char uu; + if ((d >= '0') && (d <= '9')) + uu = (unsigned char)((d - '0') << 4); + else if ((d >= 'a') && (d <= 'f')) + uu = (unsigned char)((d - ('a'-10)) << 4); + else + return (char *) 0; + d = *(c++); + if ((d >= '0') && (d <= '9')) + uu |= (unsigned char)(d - '0'); + else if ((d >= 'a') && (d <= 'f')) + uu |= (unsigned char)(d - ('a'-10)); + else + return (char *) 0; + *u = uu; + } + return c; } /* Pack 'void *' into a string buffer. */ -SWIGRUNTIME char* SWIG_PackVoidPtr(char* buff, void* ptr, const char* name, size_t bsz) -{ - char* r = buff; - if ((2 * sizeof(void*) + 2) > bsz) - return 0; - *(r++) = '_'; - r = SWIG_PackData(r, &ptr, sizeof(void*)); - if (strlen(name) + 1 > (bsz - (r - buff))) - return 0; - strcpy(r, name); - return buff; +SWIGRUNTIME char * +SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { + char *r = buff; + if ((2*sizeof(void *) + 2) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,&ptr,sizeof(void *)); + if (strlen(name) + 1 > (bsz - (r - buff))) return 0; + strcpy(r,name); + return buff; } -SWIGRUNTIME const char* SWIG_UnpackVoidPtr(const char* c, void** ptr, const char* name) -{ - if (*c != '_') { - if (strcmp(c, "NULL") == 0) { - *ptr = (void*)0; - return name; - } - else { - return 0; - } +SWIGRUNTIME const char * +SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + *ptr = (void *) 0; + return name; + } else { + return 0; } - return SWIG_UnpackData(++c, ptr, sizeof(void*)); + } + return SWIG_UnpackData(++c,ptr,sizeof(void *)); } -SWIGRUNTIME char* SWIG_PackDataName(char* buff, void* ptr, size_t sz, const char* name, size_t bsz) -{ - char* r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2 * sz + 2 + lname) > bsz) - return 0; - *(r++) = '_'; - r = SWIG_PackData(r, ptr, sz); - if (lname) { - strncpy(r, name, lname + 1); - } - else { - *r = 0; - } - return buff; +SWIGRUNTIME char * +SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { + char *r = buff; + size_t lname = (name ? strlen(name) : 0); + if ((2*sz + 2 + lname) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,ptr,sz); + if (lname) { + strncpy(r,name,lname+1); + } else { + *r = 0; + } + return buff; } -SWIGRUNTIME const char* SWIG_UnpackDataName(const char* c, void* ptr, size_t sz, const char* name) -{ - if (*c != '_') { - if (strcmp(c, "NULL") == 0) { - memset(ptr, 0, sz); - return name; - } - else { - return 0; - } +SWIGRUNTIME const char * +SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + memset(ptr,0,sz); + return name; + } else { + return 0; } - return SWIG_UnpackData(++c, ptr, sz); + } + return SWIG_UnpackData(++c,ptr,sz); } #ifdef __cplusplus @@ -799,298 +757,282 @@ SWIGRUNTIME const char* SWIG_UnpackDataName(const char* c, void* ptr, size_t sz, #endif /* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 +#define SWIG_UnknownError -1 +#define SWIG_IOError -2 +#define SWIG_RuntimeError -3 +#define SWIG_IndexError -4 +#define SWIG_TypeError -5 +#define SWIG_DivisionByZero -6 +#define SWIG_OverflowError -7 +#define SWIG_SyntaxError -8 +#define SWIG_ValueError -9 +#define SWIG_SystemError -10 +#define SWIG_AttributeError -11 +#define SWIG_MemoryError -12 +#define SWIG_NullReferenceError -13 + + /* Compatibility macros for Python 3 */ #if PY_VERSION_HEX >= 0x03000000 -#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject*)&PyType_Type) -#define PyInt_Check(x) PyLong_Check(x) -#define PyInt_AsLong(x) PyLong_AsLong(x) -#define PyInt_FromLong(x) PyLong_FromLong(x) -#define PyInt_FromSize_t(x) PyLong_FromSize_t(x) -#define PyString_Check(name) PyBytes_Check(name) -#define PyString_FromString(x) PyUnicode_FromString(x) -#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) -#define PyString_AsString(str) PyBytes_AsString(str) -#define PyString_Size(str) PyBytes_Size(str) +#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) +#define PyInt_Check(x) PyLong_Check(x) +#define PyInt_AsLong(x) PyLong_AsLong(x) +#define PyInt_FromLong(x) PyLong_FromLong(x) +#define PyInt_FromSize_t(x) PyLong_FromSize_t(x) +#define PyString_Check(name) PyBytes_Check(name) +#define PyString_FromString(x) PyUnicode_FromString(x) +#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) +#define PyString_AsString(str) PyBytes_AsString(str) +#define PyString_Size(str) PyBytes_Size(str) #define PyString_InternFromString(key) PyUnicode_InternFromString(key) -#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE -#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x) -#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x) +#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE +#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x) +#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x) #endif #ifndef Py_TYPE -#define Py_TYPE(op) ((op)->ob_type) +# define Py_TYPE(op) ((op)->ob_type) #endif /* SWIG APIs for compatibility of both Python 2 & 3 */ #if PY_VERSION_HEX >= 0x03000000 -#define SWIG_Python_str_FromFormat PyUnicode_FromFormat +# define SWIG_Python_str_FromFormat PyUnicode_FromFormat #else -#define SWIG_Python_str_FromFormat PyString_FromFormat +# define SWIG_Python_str_FromFormat PyString_FromFormat #endif + /* Warning: This function will allocate a new string in Python 3, * so please call SWIG_Python_str_DelForPy3(x) to free the space. */ -SWIGINTERN char* SWIG_Python_str_AsChar(PyObject* str) +SWIGINTERN char* +SWIG_Python_str_AsChar(PyObject *str) { #if PY_VERSION_HEX >= 0x03030000 - return (char*)PyUnicode_AsUTF8(str); + return (char *)PyUnicode_AsUTF8(str); #elif PY_VERSION_HEX >= 0x03000000 - char* newstr = 0; - str = PyUnicode_AsUTF8String(str); - if (str) { - char* cstr; - Py_ssize_t len; - if (PyBytes_AsStringAndSize(str, &cstr, &len) != -1) { - newstr = (char*)malloc(len + 1); - if (newstr) - memcpy(newstr, cstr, len + 1); - } - Py_XDECREF(str); + char *newstr = 0; + str = PyUnicode_AsUTF8String(str); + if (str) { + char *cstr; + Py_ssize_t len; + if (PyBytes_AsStringAndSize(str, &cstr, &len) != -1) { + newstr = (char *) malloc(len+1); + if (newstr) + memcpy(newstr, cstr, len+1); } - return newstr; + Py_XDECREF(str); + } + return newstr; #else - return PyString_AsString(str); + return PyString_AsString(str); #endif } #if PY_VERSION_HEX >= 0x03030000 || PY_VERSION_HEX < 0x03000000 -#define SWIG_Python_str_DelForPy3(x) +# define SWIG_Python_str_DelForPy3(x) #else -#define SWIG_Python_str_DelForPy3(x) free((void*)(x)) +# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) #endif -SWIGINTERN PyObject* SWIG_Python_str_FromChar(const char* c) + +SWIGINTERN PyObject* +SWIG_Python_str_FromChar(const char *c) { #if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromString(c); + return PyUnicode_FromString(c); #else - return PyString_FromString(c); + return PyString_FromString(c); #endif } #ifndef PyObject_DEL -#define PyObject_DEL PyObject_Del +# define PyObject_DEL PyObject_Del #endif // SWIGPY_USE_CAPSULE is no longer used within SWIG itself, but some user // interface files check for it. -#define SWIGPY_USE_CAPSULE -#define SWIGPY_CAPSULE_NAME ("swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME) +# define SWIGPY_USE_CAPSULE +# define SWIGPY_CAPSULE_NAME ("swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME) #if PY_VERSION_HEX < 0x03020000 -#define PyDescr_TYPE(x) (((PyDescrObject*)(x))->d_type) -#define PyDescr_NAME(x) (((PyDescrObject*)(x))->d_name) -#define Py_hash_t long +#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type) +#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name) +#define Py_hash_t long #endif /* ----------------------------------------------------------------------------- * error manipulation * ----------------------------------------------------------------------------- */ -SWIGRUNTIME PyObject* SWIG_Python_ErrorType(int code) -{ - PyObject* type = 0; - switch (code) { - case SWIG_MemoryError: - type = PyExc_MemoryError; - break; - case SWIG_IOError: - type = PyExc_IOError; - break; - case SWIG_RuntimeError: - type = PyExc_RuntimeError; - break; - case SWIG_IndexError: - type = PyExc_IndexError; - break; - case SWIG_TypeError: - type = PyExc_TypeError; - break; - case SWIG_DivisionByZero: - type = PyExc_ZeroDivisionError; - break; - case SWIG_OverflowError: - type = PyExc_OverflowError; - break; - case SWIG_SyntaxError: - type = PyExc_SyntaxError; - break; - case SWIG_ValueError: - type = PyExc_ValueError; - break; - case SWIG_SystemError: - type = PyExc_SystemError; - break; - case SWIG_AttributeError: - type = PyExc_AttributeError; - break; - default: - type = PyExc_RuntimeError; - } - return type; +SWIGRUNTIME PyObject* +SWIG_Python_ErrorType(int code) { + PyObject* type = 0; + switch(code) { + case SWIG_MemoryError: + type = PyExc_MemoryError; + break; + case SWIG_IOError: + type = PyExc_IOError; + break; + case SWIG_RuntimeError: + type = PyExc_RuntimeError; + break; + case SWIG_IndexError: + type = PyExc_IndexError; + break; + case SWIG_TypeError: + type = PyExc_TypeError; + break; + case SWIG_DivisionByZero: + type = PyExc_ZeroDivisionError; + break; + case SWIG_OverflowError: + type = PyExc_OverflowError; + break; + case SWIG_SyntaxError: + type = PyExc_SyntaxError; + break; + case SWIG_ValueError: + type = PyExc_ValueError; + break; + case SWIG_SystemError: + type = PyExc_SystemError; + break; + case SWIG_AttributeError: + type = PyExc_AttributeError; + break; + default: + type = PyExc_RuntimeError; + } + return type; } -SWIGRUNTIME void SWIG_Python_AddErrorMsg(const char* mesg) -{ - PyObject* type = 0; - PyObject* value = 0; - PyObject* traceback = 0; - if (PyErr_Occurred()) - PyErr_Fetch(&type, &value, &traceback); - if (value) { - PyObject* old_str = PyObject_Str(value); - const char* tmp = SWIG_Python_str_AsChar(old_str); - PyErr_Clear(); - Py_XINCREF(type); - if (tmp) - PyErr_Format(type, "%s %s", tmp, mesg); - else - PyErr_Format(type, "%s", mesg); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - Py_DECREF(value); - } - else { - PyErr_SetString(PyExc_RuntimeError, mesg); - } +SWIGRUNTIME void +SWIG_Python_AddErrorMsg(const char* mesg) +{ + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + + if (PyErr_Occurred()) + PyErr_Fetch(&type, &value, &traceback); + if (value) { + PyObject *old_str = PyObject_Str(value); + const char *tmp = SWIG_Python_str_AsChar(old_str); + PyErr_Clear(); + Py_XINCREF(type); + if (tmp) + PyErr_Format(type, "%s %s", tmp, mesg); + else + PyErr_Format(type, "%s", mesg); + SWIG_Python_str_DelForPy3(tmp); + Py_DECREF(old_str); + Py_DECREF(value); + } else { + PyErr_SetString(PyExc_RuntimeError, mesg); + } } -SWIGRUNTIME int SWIG_Python_TypeErrorOccurred(PyObject* obj) +SWIGRUNTIME int +SWIG_Python_TypeErrorOccurred(PyObject *obj) { - PyObject* error; - if (obj) - return 0; - error = PyErr_Occurred(); - return error && PyErr_GivenExceptionMatches(error, PyExc_TypeError); + PyObject *error; + if (obj) + return 0; + error = PyErr_Occurred(); + return error && PyErr_GivenExceptionMatches(error, PyExc_TypeError); } -SWIGRUNTIME void SWIG_Python_RaiseOrModifyTypeError(const char* message) +SWIGRUNTIME void +SWIG_Python_RaiseOrModifyTypeError(const char *message) { - if (SWIG_Python_TypeErrorOccurred(NULL)) { - /* Use existing TypeError to preserve stacktrace and enhance with given message */ - PyObject* newvalue; - PyObject *type = NULL, *value = NULL, *traceback = NULL; - PyErr_Fetch(&type, &value, &traceback); + if (SWIG_Python_TypeErrorOccurred(NULL)) { + /* Use existing TypeError to preserve stacktrace and enhance with given message */ + PyObject *newvalue; + PyObject *type = NULL, *value = NULL, *traceback = NULL; + PyErr_Fetch(&type, &value, &traceback); #if PY_VERSION_HEX >= 0x03000000 - newvalue = PyUnicode_FromFormat("%S\nAdditional information:\n%s", value, message); + newvalue = PyUnicode_FromFormat("%S\nAdditional information:\n%s", value, message); #else - newvalue = PyString_FromFormat("%s\nAdditional information:\n%s", PyString_AsString(value), message); + newvalue = PyString_FromFormat("%s\nAdditional information:\n%s", PyString_AsString(value), message); #endif - Py_XDECREF(value); - PyErr_Restore(type, newvalue, traceback); - } - else { - /* Raise TypeError using given message */ - PyErr_SetString(PyExc_TypeError, message); - } + Py_XDECREF(value); + PyErr_Restore(type, newvalue, traceback); + } else { + /* Raise TypeError using given message */ + PyErr_SetString(PyExc_TypeError, message); + } } #if defined(SWIG_PYTHON_NO_THREADS) -#if defined(SWIG_PYTHON_THREADS) -#undef SWIG_PYTHON_THREADS -#endif +# if defined(SWIG_PYTHON_THREADS) +# undef SWIG_PYTHON_THREADS +# endif #endif #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ -#if ! defined(SWIG_PYTHON_USE_GIL) && ! defined(SWIG_PYTHON_NO_USE_GIL) -#define SWIG_PYTHON_USE_GIL -#endif -#if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ -#ifndef SWIG_PYTHON_INITIALIZE_THREADS -#define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() -#endif -#ifdef __cplusplus /* C++ code */ -class SWIG_Python_Thread_Block { - bool status; - PyGILState_STATE state; - - public: - void end() - { - if (status) { - PyGILState_Release(state); - status = false; - } - } - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) - { - } - ~SWIG_Python_Thread_Block() - { - end(); - } -}; -class SWIG_Python_Thread_Allow { - bool status; - PyThreadState* save; - - public: - void end() - { - if (status) { - PyEval_RestoreThread(save); - status = false; - } - } - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) - { - } - ~SWIG_Python_Thread_Allow() - { - end(); - } -}; -#define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block -#define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() -#define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow -#define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() -#else /* C code */ -#define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() -#define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) -#define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState* _swig_thread_allow = PyEval_SaveThread() -#define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) -#endif -#else /* Old thread way, not implemented, user must provide it */ -#if ! defined(SWIG_PYTHON_INITIALIZE_THREADS) -#define SWIG_PYTHON_INITIALIZE_THREADS -#endif -#if ! defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) -#define SWIG_PYTHON_THREAD_BEGIN_BLOCK -#endif -#if ! defined(SWIG_PYTHON_THREAD_END_BLOCK) -#define SWIG_PYTHON_THREAD_END_BLOCK -#endif -#if ! defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) -#define SWIG_PYTHON_THREAD_BEGIN_ALLOW -#endif -#if ! defined(SWIG_PYTHON_THREAD_END_ALLOW) -#define SWIG_PYTHON_THREAD_END_ALLOW -#endif -#endif +# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) +# define SWIG_PYTHON_USE_GIL +# endif +# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ +# ifndef SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() +# endif +# ifdef __cplusplus /* C++ code */ + class SWIG_Python_Thread_Block { + bool status; + PyGILState_STATE state; + public: + void end() { if (status) { PyGILState_Release(state); status = false;} } + SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} + ~SWIG_Python_Thread_Block() { end(); } + }; + class SWIG_Python_Thread_Allow { + bool status; + PyThreadState *save; + public: + void end() { if (status) { PyEval_RestoreThread(save); status = false; }} + SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} + ~SWIG_Python_Thread_Allow() { end(); } + }; +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block +# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow +# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() +# else /* C code */ +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() +# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() +# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) +# endif +# else /* Old thread way, not implemented, user must provide it */ +# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) +# define SWIG_PYTHON_INITIALIZE_THREADS +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) +# define SWIG_PYTHON_THREAD_END_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# endif +# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) +# define SWIG_PYTHON_THREAD_END_ALLOW +# endif +# endif #else /* No thread support */ -#define SWIG_PYTHON_INITIALIZE_THREADS -#define SWIG_PYTHON_THREAD_BEGIN_BLOCK -#define SWIG_PYTHON_THREAD_END_BLOCK -#define SWIG_PYTHON_THREAD_BEGIN_ALLOW -#define SWIG_PYTHON_THREAD_END_ALLOW +# define SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# define SWIG_PYTHON_THREAD_END_BLOCK +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# define SWIG_PYTHON_THREAD_END_ALLOW #endif /* ----------------------------------------------------------------------------- @@ -1111,18 +1053,19 @@ extern "C" { /* Constant information structure */ typedef struct swig_const_info { - int type; - const char* name; - long lvalue; - double dvalue; - void* pvalue; - swig_type_info** ptype; + int type; + const char *name; + long lvalue; + double dvalue; + void *pvalue; + swig_type_info **ptype; } swig_const_info; #ifdef __cplusplus } #endif + /* ----------------------------------------------------------------------------- * pyrun.swg * @@ -1133,226 +1076,205 @@ typedef struct swig_const_info { * ----------------------------------------------------------------------------- */ #if PY_VERSION_HEX < 0x02070000 /* 2.7.0 */ -#error "This version of SWIG only supports Python >= 2.7" +# error "This version of SWIG only supports Python >= 2.7" #endif #if PY_VERSION_HEX >= 0x03000000 && PY_VERSION_HEX < 0x03020000 -#error "This version of SWIG only supports Python 3 >= 3.2" +# error "This version of SWIG only supports Python 3 >= 3.2" #endif /* Common SWIG API */ /* for raw pointers */ -#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj, pptr, type, flags, own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) +#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) +#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) +#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) #ifdef SWIGPYTHON_BUILTIN -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags) +#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags) #else -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) +#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) #endif -#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) +#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags) -#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) -#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) -#define swig_owntype int +#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) +#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) +#define swig_owntype int /* for raw packed data */ -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) +#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* for class or struct pointers */ -#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) +#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) +#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) /* for C or C++ function pointers */ -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0) +#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) +#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0) /* for C++ member pointers, ie, member methods */ -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) +#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) + /* Runtime API */ -#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata) -#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) -#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) +#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata) +#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) +#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) + +#define SWIG_SetErrorObj SWIG_Python_SetErrorObj +#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg +#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) +#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) +#define SWIG_fail goto fail -#define SWIG_SetErrorObj SWIG_Python_SetErrorObj -#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg -#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) -#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) -#define SWIG_fail goto fail /* Runtime API implementation */ /* Error manipulation */ -SWIGINTERN void SWIG_Python_SetErrorObj(PyObject* errtype, PyObject* obj) -{ - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetObject(errtype, obj); - Py_DECREF(obj); - SWIG_PYTHON_THREAD_END_BLOCK; +SWIGINTERN void +SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetObject(errtype, obj); + Py_DECREF(obj); + SWIG_PYTHON_THREAD_END_BLOCK; } -SWIGINTERN void SWIG_Python_SetErrorMsg(PyObject* errtype, const char* msg) -{ - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetString(errtype, msg); - SWIG_PYTHON_THREAD_END_BLOCK; +SWIGINTERN void +SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(errtype, msg); + SWIG_PYTHON_THREAD_END_BLOCK; } -#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) +#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) /* Set a constant value */ #if defined(SWIGPYTHON_BUILTIN) -SWIGINTERN void SwigPyBuiltin_AddPublicSymbol(PyObject* seq, const char* key) -{ - PyObject* s = PyString_InternFromString(key); - PyList_Append(seq, s); - Py_DECREF(s); +SWIGINTERN void +SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) { + PyObject *s = PyString_InternFromString(key); + PyList_Append(seq, s); + Py_DECREF(s); } -SWIGINTERN void SWIG_Python_SetConstant(PyObject* d, PyObject* public_interface, const char* name, PyObject* obj) -{ - PyDict_SetItemString(d, name, obj); - Py_DECREF(obj); - if (public_interface) - SwigPyBuiltin_AddPublicSymbol(public_interface, name); +SWIGINTERN void +SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) { + PyDict_SetItemString(d, name, obj); + Py_DECREF(obj); + if (public_interface) + SwigPyBuiltin_AddPublicSymbol(public_interface, name); } #else -SWIGINTERN void SWIG_Python_SetConstant(PyObject* d, const char* name, PyObject* obj) -{ - PyDict_SetItemString(d, name, obj); - Py_DECREF(obj); +SWIGINTERN void +SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { + PyDict_SetItemString(d, name, obj); + Py_DECREF(obj); } #endif /* Append a value to the result obj */ -SWIGINTERN PyObject* SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) -{ - if (! result) { - result = obj; +SWIGINTERN PyObject* +SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { + if (!result) { + result = obj; + } else if (result == Py_None) { + Py_DECREF(result); + result = obj; + } else { + if (!PyList_Check(result)) { + PyObject *o2 = result; + result = PyList_New(1); + PyList_SetItem(result, 0, o2); } - else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } - else { - if (! PyList_Check(result)) { - PyObject* o2 = result; - result = PyList_New(1); - PyList_SetItem(result, 0, o2); - } - PyList_Append(result, obj); - Py_DECREF(obj); - } - return result; + PyList_Append(result,obj); + Py_DECREF(obj); + } + return result; } /* Unpack the argument tuple */ SWIGINTERN Py_ssize_t -SWIG_Python_UnpackTuple(PyObject* args, const char* name, Py_ssize_t min, Py_ssize_t max, PyObject** objs) +SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) { - if (! args) { - if (! min && ! max) { - return 1; - } - else { - PyErr_Format( - PyExc_TypeError, - "%s expected %s%d arguments, got none", - name, - (min == max ? "" : "at least "), - (int)min); - return 0; - } + if (!args) { + if (!min && !max) { + return 1; + } else { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", + name, (min == max ? "" : "at least "), (int)min); + return 0; } - if (! PyTuple_Check(args)) { - if (min <= 1 && max >= 1) { - Py_ssize_t i; - objs[0] = args; - for (i = 1; i < max; ++i) { - objs[i] = 0; - } - return 2; - } - PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); - return 0; - } - else { - Py_ssize_t l = PyTuple_GET_SIZE(args); - if (l < min) { - PyErr_Format( - PyExc_TypeError, - "%s expected %s%d arguments, got %d", - name, - (min == max ? "" : "at least "), - (int)min, - (int)l); - return 0; - } - else if (l > max) { - PyErr_Format( - PyExc_TypeError, - "%s expected %s%d arguments, got %d", - name, - (min == max ? "" : "at most "), - (int)max, - (int)l); - return 0; - } - else { - Py_ssize_t i; - for (i = 0; i < l; ++i) { - objs[i] = PyTuple_GET_ITEM(args, i); - } - for (; l < max; ++l) { - objs[l] = 0; - } - return i + 1; - } + } + if (!PyTuple_Check(args)) { + if (min <= 1 && max >= 1) { + Py_ssize_t i; + objs[0] = args; + for (i = 1; i < max; ++i) { + objs[i] = 0; + } + return 2; } + PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); + return 0; + } else { + Py_ssize_t l = PyTuple_GET_SIZE(args); + if (l < min) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at least "), (int)min, (int)l); + return 0; + } else if (l > max) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at most "), (int)max, (int)l); + return 0; + } else { + Py_ssize_t i; + for (i = 0; i < l; ++i) { + objs[i] = PyTuple_GET_ITEM(args, i); + } + for (; l < max; ++l) { + objs[l] = 0; + } + return i + 1; + } + } } -SWIGINTERN int SWIG_Python_CheckNoKeywords(PyObject* kwargs, const char* name) -{ - int no_kwargs = 1; - if (kwargs) { - assert(PyDict_Check(kwargs)); - if (PyDict_Size(kwargs) > 0) { - PyErr_Format(PyExc_TypeError, "%s() does not take keyword arguments", name); - no_kwargs = 0; - } +SWIGINTERN int +SWIG_Python_CheckNoKeywords(PyObject *kwargs, const char *name) { + int no_kwargs = 1; + if (kwargs) { + assert(PyDict_Check(kwargs)); + if (PyDict_Size(kwargs) > 0) { + PyErr_Format(PyExc_TypeError, "%s() does not take keyword arguments", name); + no_kwargs = 0; } - return no_kwargs; + } + return no_kwargs; } /* A functor is a function object with one single object argument */ -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); +#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); /* Helper for static pointer initialization for both C and C++ code, for example static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); */ #ifdef __cplusplus -#define SWIG_STATIC_POINTER(var) var +#define SWIG_STATIC_POINTER(var) var #else -#define SWIG_STATIC_POINTER(var) \ - var = 0; \ - if (! var) \ - var +#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var #endif /* ----------------------------------------------------------------------------- @@ -1360,13 +1282,13 @@ SWIGINTERN int SWIG_Python_CheckNoKeywords(PyObject* kwargs, const char* name) * ----------------------------------------------------------------------------- */ /* Flags for new pointer objects */ -#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) -#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) +#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) +#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) -#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) +#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) -#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2) -#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN) +#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2) +#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN) #ifdef __cplusplus extern "C" { @@ -1374,549 +1296,520 @@ extern "C" { /* The python void return value */ -SWIGRUNTIMEINLINE PyObject* SWIG_Py_Void(void) +SWIGRUNTIMEINLINE PyObject * +SWIG_Py_Void(void) { - PyObject* none = Py_None; - Py_INCREF(none); - return none; + PyObject *none = Py_None; + Py_INCREF(none); + return none; } /* SwigPyClientData */ typedef struct { - PyObject* klass; - PyObject* newraw; - PyObject* newargs; - PyObject* destroy; - int delargs; - int implicitconv; - PyTypeObject* pytype; + PyObject *klass; + PyObject *newraw; + PyObject *newargs; + PyObject *destroy; + int delargs; + int implicitconv; + PyTypeObject *pytype; } SwigPyClientData; -SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit(swig_type_info* ty) +SWIGRUNTIMEINLINE int +SWIG_Python_CheckImplicit(swig_type_info *ty) { - SwigPyClientData* data = (SwigPyClientData*)ty->clientdata; - int fail = data ? data->implicitconv : 0; - if (fail) - PyErr_SetString(PyExc_TypeError, "Implicit conversion is prohibited for explicit constructors."); - return fail; + SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; + int fail = data ? data->implicitconv : 0; + if (fail) + PyErr_SetString(PyExc_TypeError, "Implicit conversion is prohibited for explicit constructors."); + return fail; } -SWIGRUNTIMEINLINE PyObject* SWIG_Python_ExceptionType(swig_type_info* desc) -{ - SwigPyClientData* data = desc ? (SwigPyClientData*)desc->clientdata : 0; - PyObject* klass = data ? data->klass : 0; - return (klass ? klass : PyExc_RuntimeError); +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_ExceptionType(swig_type_info *desc) { + SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; + PyObject *klass = data ? data->klass : 0; + return (klass ? klass : PyExc_RuntimeError); } -SWIGRUNTIME SwigPyClientData* SwigPyClientData_New(PyObject* obj) + +SWIGRUNTIME SwigPyClientData * +SwigPyClientData_New(PyObject* obj) { - if (! obj) { - return 0; + if (!obj) { + return 0; + } else { + SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); + /* the klass element */ + data->klass = obj; + Py_INCREF(data->klass); + /* the newraw method and newargs arguments used to create a new raw instance */ + if (PyClass_Check(obj)) { + data->newraw = 0; + data->newargs = obj; + Py_INCREF(obj); + } else { + data->newraw = PyObject_GetAttrString(data->klass, "__new__"); + if (data->newraw) { + Py_INCREF(data->newraw); + data->newargs = PyTuple_New(1); + PyTuple_SetItem(data->newargs, 0, obj); + } else { + data->newargs = obj; + } + Py_INCREF(data->newargs); } - else { - SwigPyClientData* data = (SwigPyClientData*)malloc(sizeof(SwigPyClientData)); - /* the klass element */ - data->klass = obj; - Py_INCREF(data->klass); - /* the newraw method and newargs arguments used to create a new raw instance */ - if (PyClass_Check(obj)) { - data->newraw = 0; - data->newargs = obj; - Py_INCREF(obj); - } - else { - data->newraw = PyObject_GetAttrString(data->klass, "__new__"); - if (data->newraw) { - Py_INCREF(data->newraw); - data->newargs = PyTuple_New(1); - PyTuple_SetItem(data->newargs, 0, obj); - } - else { - data->newargs = obj; - } - Py_INCREF(data->newargs); - } - /* the destroy method, aka as the C++ delete method */ - data->destroy = PyObject_GetAttrString(data->klass, "__swig_destroy__"); - if (PyErr_Occurred()) { - PyErr_Clear(); - data->destroy = 0; - } - if (data->destroy) { - int flags; - Py_INCREF(data->destroy); - flags = PyCFunction_GET_FLAGS(data->destroy); - data->delargs = ! (flags & (METH_O)); - } - else { - data->delargs = 0; - } - data->implicitconv = 0; - data->pytype = 0; - return data; + /* the destroy method, aka as the C++ delete method */ + data->destroy = PyObject_GetAttrString(data->klass, "__swig_destroy__"); + if (PyErr_Occurred()) { + PyErr_Clear(); + data->destroy = 0; } + if (data->destroy) { + int flags; + Py_INCREF(data->destroy); + flags = PyCFunction_GET_FLAGS(data->destroy); + data->delargs = !(flags & (METH_O)); + } else { + data->delargs = 0; + } + data->implicitconv = 0; + data->pytype = 0; + return data; + } } -SWIGRUNTIME void SwigPyClientData_Del(SwigPyClientData* data) -{ - Py_XDECREF(data->newraw); - Py_XDECREF(data->newargs); - Py_XDECREF(data->destroy); +SWIGRUNTIME void +SwigPyClientData_Del(SwigPyClientData *data) { + Py_XDECREF(data->newraw); + Py_XDECREF(data->newargs); + Py_XDECREF(data->destroy); } /* =============== SwigPyObject =====================*/ typedef struct { - PyObject_HEAD void* ptr; - swig_type_info* ty; - int own; - PyObject* next; + PyObject_HEAD + void *ptr; + swig_type_info *ty; + int own; + PyObject *next; #ifdef SWIGPYTHON_BUILTIN - PyObject* dict; + PyObject *dict; #endif } SwigPyObject; + #ifdef SWIGPYTHON_BUILTIN -SWIGRUNTIME PyObject* SwigPyObject_get___dict__(PyObject* v, PyObject* SWIGUNUSEDPARM(args)) +SWIGRUNTIME PyObject * +SwigPyObject_get___dict__(PyObject *v, PyObject *SWIGUNUSEDPARM(args)) { - SwigPyObject* sobj = (SwigPyObject*)v; + SwigPyObject *sobj = (SwigPyObject *)v; - if (! sobj->dict) - sobj->dict = PyDict_New(); + if (!sobj->dict) + sobj->dict = PyDict_New(); - Py_INCREF(sobj->dict); - return sobj->dict; + Py_INCREF(sobj->dict); + return sobj->dict; } #endif -SWIGRUNTIME PyObject* SwigPyObject_long(SwigPyObject* v) +SWIGRUNTIME PyObject * +SwigPyObject_long(SwigPyObject *v) { - return PyLong_FromVoidPtr(v->ptr); + return PyLong_FromVoidPtr(v->ptr); } -SWIGRUNTIME PyObject* SwigPyObject_format(const char* fmt, SwigPyObject* v) +SWIGRUNTIME PyObject * +SwigPyObject_format(const char* fmt, SwigPyObject *v) { - PyObject* res = NULL; - PyObject* args = PyTuple_New(1); - if (args) { - if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { - PyObject* ofmt = SWIG_Python_str_FromChar(fmt); - if (ofmt) { + PyObject *res = NULL; + PyObject *args = PyTuple_New(1); + if (args) { + if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { + PyObject *ofmt = SWIG_Python_str_FromChar(fmt); + if (ofmt) { #if PY_VERSION_HEX >= 0x03000000 - res = PyUnicode_Format(ofmt, args); + res = PyUnicode_Format(ofmt,args); #else - res = PyString_Format(ofmt, args); + res = PyString_Format(ofmt,args); #endif - Py_DECREF(ofmt); - } - Py_DECREF(args); - } + Py_DECREF(ofmt); + } + Py_DECREF(args); } - return res; + } + return res; } -SWIGRUNTIME PyObject* SwigPyObject_oct(SwigPyObject* v) +SWIGRUNTIME PyObject * +SwigPyObject_oct(SwigPyObject *v) { - return SwigPyObject_format("%o", v); + return SwigPyObject_format("%o",v); } -SWIGRUNTIME PyObject* SwigPyObject_hex(SwigPyObject* v) +SWIGRUNTIME PyObject * +SwigPyObject_hex(SwigPyObject *v) { - return SwigPyObject_format("%x", v); + return SwigPyObject_format("%x",v); } -SWIGRUNTIME PyObject* SwigPyObject_repr(SwigPyObject* v) +SWIGRUNTIME PyObject * +SwigPyObject_repr(SwigPyObject *v) { - const char* name = SWIG_TypePrettyName(v->ty); - PyObject* repr = - SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void*)v); - if (v->next) { - PyObject* nrep = SwigPyObject_repr((SwigPyObject*)v->next); -#if PY_VERSION_HEX >= 0x03000000 - PyObject* joined = PyUnicode_Concat(repr, nrep); - Py_DecRef(repr); - Py_DecRef(nrep); - repr = joined; -#else - PyString_ConcatAndDel(&repr, nrep); -#endif - } - return repr; + const char *name = SWIG_TypePrettyName(v->ty); + PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v); + if (v->next) { + PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); +# if PY_VERSION_HEX >= 0x03000000 + PyObject *joined = PyUnicode_Concat(repr, nrep); + Py_DecRef(repr); + Py_DecRef(nrep); + repr = joined; +# else + PyString_ConcatAndDel(&repr,nrep); +# endif + } + return repr; } /* We need a version taking two PyObject* parameters so it's a valid * PyCFunction to use in swigobject_methods[]. */ -SWIGRUNTIME PyObject* SwigPyObject_repr2(PyObject* v, PyObject* SWIGUNUSEDPARM(args)) +SWIGRUNTIME PyObject * +SwigPyObject_repr2(PyObject *v, PyObject *SWIGUNUSEDPARM(args)) { - return SwigPyObject_repr((SwigPyObject*)v); + return SwigPyObject_repr((SwigPyObject*)v); } -SWIGRUNTIME int SwigPyObject_compare(SwigPyObject* v, SwigPyObject* w) +SWIGRUNTIME int +SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) { - void* i = v->ptr; - void* j = w->ptr; - return (i < j) ? -1 : ((i > j) ? 1 : 0); + void *i = v->ptr; + void *j = w->ptr; + return (i < j) ? -1 : ((i > j) ? 1 : 0); } /* Added for Python 3.x, would it also be useful for Python 2.x? */ -SWIGRUNTIME PyObject* SwigPyObject_richcompare(SwigPyObject* v, SwigPyObject* w, int op) +SWIGRUNTIME PyObject* +SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) { - PyObject* res; - if (op != Py_EQ && op != Py_NE) { - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; - } - res = PyBool_FromLong((SwigPyObject_compare(v, w) == 0) == (op == Py_EQ) ? 1 : 0); - return res; + PyObject* res; + if( op != Py_EQ && op != Py_NE ) { + Py_INCREF(Py_NotImplemented); + return Py_NotImplemented; + } + res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0); + return res; } + SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void); #ifdef SWIGPYTHON_BUILTIN -static swig_type_info* SwigPyObject_stype = 0; -SWIGRUNTIME PyTypeObject* SwigPyObject_type(void) -{ - SwigPyClientData* cd; +static swig_type_info *SwigPyObject_stype = 0; +SWIGRUNTIME PyTypeObject* +SwigPyObject_type(void) { + SwigPyClientData *cd; assert(SwigPyObject_stype); - cd = (SwigPyClientData*)SwigPyObject_stype->clientdata; + cd = (SwigPyClientData*) SwigPyObject_stype->clientdata; assert(cd); assert(cd->pytype); return cd->pytype; } #else -SWIGRUNTIME PyTypeObject* SwigPyObject_type(void) -{ - static PyTypeObject* SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce(); - return type; +SWIGRUNTIME PyTypeObject* +SwigPyObject_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce(); + return type; } #endif -SWIGRUNTIMEINLINE int SwigPyObject_Check(PyObject* op) -{ +SWIGRUNTIMEINLINE int +SwigPyObject_Check(PyObject *op) { #ifdef SWIGPYTHON_BUILTIN - PyTypeObject* target_tp = SwigPyObject_type(); - if (PyType_IsSubtype(op->ob_type, target_tp)) - return 1; - return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0); + PyTypeObject *target_tp = SwigPyObject_type(); + if (PyType_IsSubtype(op->ob_type, target_tp)) + return 1; + return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0); #else - return (Py_TYPE(op) == SwigPyObject_type()) || (strcmp(Py_TYPE(op)->tp_name, "SwigPyObject") == 0); + return (Py_TYPE(op) == SwigPyObject_type()) + || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); #endif } -SWIGRUNTIME PyObject* SwigPyObject_New(void* ptr, swig_type_info* ty, int own); +SWIGRUNTIME PyObject * +SwigPyObject_New(void *ptr, swig_type_info *ty, int own); -SWIGRUNTIME void SwigPyObject_dealloc(PyObject* v) +SWIGRUNTIME void +SwigPyObject_dealloc(PyObject *v) { - SwigPyObject* sobj = (SwigPyObject*)v; - PyObject* next = sobj->next; - if (sobj->own == SWIG_POINTER_OWN) { - swig_type_info* ty = sobj->ty; - SwigPyClientData* data = ty ? (SwigPyClientData*)ty->clientdata : 0; - PyObject* destroy = data ? data->destroy : 0; - if (destroy) { - /* destroy is always a VARARGS method */ - PyObject* res; + SwigPyObject *sobj = (SwigPyObject *) v; + PyObject *next = sobj->next; + if (sobj->own == SWIG_POINTER_OWN) { + swig_type_info *ty = sobj->ty; + SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; + PyObject *destroy = data ? data->destroy : 0; + if (destroy) { + /* destroy is always a VARARGS method */ + PyObject *res; - /* PyObject_CallFunction() has the potential to silently drop - the active exception. In cases of unnamed temporary - variable or where we just finished iterating over a generator - StopIteration will be active right now, and this needs to - remain true upon return from SwigPyObject_dealloc. So save - and restore. */ + /* PyObject_CallFunction() has the potential to silently drop + the active exception. In cases of unnamed temporary + variable or where we just finished iterating over a generator + StopIteration will be active right now, and this needs to + remain true upon return from SwigPyObject_dealloc. So save + and restore. */ + + PyObject *type = NULL, *value = NULL, *traceback = NULL; + PyErr_Fetch(&type, &value, &traceback); - PyObject *type = NULL, *value = NULL, *traceback = NULL; - PyErr_Fetch(&type, &value, &traceback); + if (data->delargs) { + /* we need to create a temporary object to carry the destroy operation */ + PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); + res = SWIG_Python_CallFunctor(destroy, tmp); + Py_DECREF(tmp); + } else { + PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); + PyObject *mself = PyCFunction_GET_SELF(destroy); + res = ((*meth)(mself, v)); + } + if (!res) + PyErr_WriteUnraisable(destroy); - if (data->delargs) { - /* we need to create a temporary object to carry the destroy operation */ - PyObject* tmp = SwigPyObject_New(sobj->ptr, ty, 0); - res = SWIG_Python_CallFunctor(destroy, tmp); - Py_DECREF(tmp); - } - else { - PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); - PyObject* mself = PyCFunction_GET_SELF(destroy); - res = ((*meth)(mself, v)); - } - if (! res) - PyErr_WriteUnraisable(destroy); + PyErr_Restore(type, value, traceback); - PyErr_Restore(type, value, traceback); - - Py_XDECREF(res); - } -#if ! defined(SWIG_PYTHON_SILENT_MEMLEAK) - else { - const char* name = SWIG_TypePrettyName(ty); - printf( - "swig/python detected a memory leak of type '%s', no destructor found.\n", - (name ? name : "unknown")); - } + Py_XDECREF(res); + } +#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) + else { + const char *name = SWIG_TypePrettyName(ty); + printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); + } #endif - } - Py_XDECREF(next); - PyObject_DEL(v); + } + Py_XDECREF(next); + PyObject_DEL(v); } -SWIGRUNTIME PyObject* SwigPyObject_append(PyObject* v, PyObject* next) +SWIGRUNTIME PyObject* +SwigPyObject_append(PyObject* v, PyObject* next) { - SwigPyObject* sobj = (SwigPyObject*)v; - if (! SwigPyObject_Check(next)) { - PyErr_SetString(PyExc_TypeError, "Attempt to append a non SwigPyObject"); - return NULL; - } - sobj->next = next; - Py_INCREF(next); + SwigPyObject *sobj = (SwigPyObject *) v; + if (!SwigPyObject_Check(next)) { + PyErr_SetString(PyExc_TypeError, "Attempt to append a non SwigPyObject"); + return NULL; + } + sobj->next = next; + Py_INCREF(next); + return SWIG_Py_Void(); +} + +SWIGRUNTIME PyObject* +SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +{ + SwigPyObject *sobj = (SwigPyObject *) v; + if (sobj->next) { + Py_INCREF(sobj->next); + return sobj->next; + } else { return SWIG_Py_Void(); + } } -SWIGRUNTIME PyObject* SwigPyObject_next(PyObject* v, PyObject* SWIGUNUSEDPARM(args)) +SWIGINTERN PyObject* +SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) { - SwigPyObject* sobj = (SwigPyObject*)v; - if (sobj->next) { - Py_INCREF(sobj->next); - return sobj->next; - } - else { - return SWIG_Py_Void(); - } + SwigPyObject *sobj = (SwigPyObject *)v; + sobj->own = 0; + return SWIG_Py_Void(); } -SWIGINTERN PyObject* SwigPyObject_disown(PyObject* v, PyObject* SWIGUNUSEDPARM(args)) +SWIGINTERN PyObject* +SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) { - SwigPyObject* sobj = (SwigPyObject*)v; - sobj->own = 0; - return SWIG_Py_Void(); + SwigPyObject *sobj = (SwigPyObject *)v; + sobj->own = SWIG_POINTER_OWN; + return SWIG_Py_Void(); } -SWIGINTERN PyObject* SwigPyObject_acquire(PyObject* v, PyObject* SWIGUNUSEDPARM(args)) +SWIGINTERN PyObject* +SwigPyObject_own(PyObject *v, PyObject *args) { - SwigPyObject* sobj = (SwigPyObject*)v; - sobj->own = SWIG_POINTER_OWN; - return SWIG_Py_Void(); + PyObject *val = 0; + if (!PyArg_UnpackTuple(args, "own", 0, 1, &val)) { + return NULL; + } else { + SwigPyObject *sobj = (SwigPyObject *)v; + PyObject *obj = PyBool_FromLong(sobj->own); + if (val) { + if (PyObject_IsTrue(val)) { + SwigPyObject_acquire(v,args); + } else { + SwigPyObject_disown(v,args); + } + } + return obj; + } } -SWIGINTERN PyObject* SwigPyObject_own(PyObject* v, PyObject* args) -{ - PyObject* val = 0; - if (! PyArg_UnpackTuple(args, "own", 0, 1, &val)) { - return NULL; - } - else { - SwigPyObject* sobj = (SwigPyObject*)v; - PyObject* obj = PyBool_FromLong(sobj->own); - if (val) { - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v, args); - } - else { - SwigPyObject_disown(v, args); - } - } - return obj; - } -} - -static PyMethodDef swigobject_methods[] = { - { "disown", SwigPyObject_disown, METH_NOARGS, "releases ownership of the pointer" }, - { "acquire", SwigPyObject_acquire, METH_NOARGS, "acquires ownership of the pointer" }, - { "own", SwigPyObject_own, METH_VARARGS, "returns/sets ownership of the pointer" }, - { "append", SwigPyObject_append, METH_O, "appends another 'this' object" }, - { "next", SwigPyObject_next, METH_NOARGS, "returns the next 'this' object" }, - { "__repr__", SwigPyObject_repr2, METH_NOARGS, "returns object representation" }, - { 0, 0, 0, 0 } +static PyMethodDef +swigobject_methods[] = { + {"disown", SwigPyObject_disown, METH_NOARGS, "releases ownership of the pointer"}, + {"acquire", SwigPyObject_acquire, METH_NOARGS, "acquires ownership of the pointer"}, + {"own", SwigPyObject_own, METH_VARARGS, "returns/sets ownership of the pointer"}, + {"append", SwigPyObject_append, METH_O, "appends another 'this' object"}, + {"next", SwigPyObject_next, METH_NOARGS, "returns the next 'this' object"}, + {"__repr__",SwigPyObject_repr2, METH_NOARGS, "returns object representation"}, + {0, 0, 0, 0} }; -SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void) -{ - static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; +SWIGRUNTIME PyTypeObject* +SwigPyObject_TypeOnce(void) { + static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; - static PyNumberMethods SwigPyObject_as_number = { - (binaryfunc)0, /*nb_add*/ - (binaryfunc)0, /*nb_subtract*/ - (binaryfunc)0, /*nb_multiply*/ + static PyNumberMethods SwigPyObject_as_number = { + (binaryfunc)0, /*nb_add*/ + (binaryfunc)0, /*nb_subtract*/ + (binaryfunc)0, /*nb_multiply*/ /* nb_divide removed in Python 3 */ #if PY_VERSION_HEX < 0x03000000 - (binaryfunc)0, /*nb_divide*/ + (binaryfunc)0, /*nb_divide*/ #endif - (binaryfunc)0, /*nb_remainder*/ - (binaryfunc)0, /*nb_divmod*/ - (ternaryfunc)0, /*nb_power*/ - (unaryfunc)0, /*nb_negative*/ - (unaryfunc)0, /*nb_positive*/ - (unaryfunc)0, /*nb_absolute*/ - (inquiry)0, /*nb_nonzero*/ - 0, /*nb_invert*/ - 0, /*nb_lshift*/ - 0, /*nb_rshift*/ - 0, /*nb_and*/ - 0, /*nb_xor*/ - 0, /*nb_or*/ + (binaryfunc)0, /*nb_remainder*/ + (binaryfunc)0, /*nb_divmod*/ + (ternaryfunc)0,/*nb_power*/ + (unaryfunc)0, /*nb_negative*/ + (unaryfunc)0, /*nb_positive*/ + (unaryfunc)0, /*nb_absolute*/ + (inquiry)0, /*nb_nonzero*/ + 0, /*nb_invert*/ + 0, /*nb_lshift*/ + 0, /*nb_rshift*/ + 0, /*nb_and*/ + 0, /*nb_xor*/ + 0, /*nb_or*/ #if PY_VERSION_HEX < 0x03000000 - 0, /*nb_coerce*/ + 0, /*nb_coerce*/ #endif - (unaryfunc)SwigPyObject_long, /*nb_int*/ + (unaryfunc)SwigPyObject_long, /*nb_int*/ #if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_long, /*nb_long*/ + (unaryfunc)SwigPyObject_long, /*nb_long*/ #else - 0, /*nb_reserved*/ + 0, /*nb_reserved*/ #endif - (unaryfunc)0, /*nb_float*/ + (unaryfunc)0, /*nb_float*/ #if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_oct, /*nb_oct*/ - (unaryfunc)SwigPyObject_hex, /*nb_hex*/ + (unaryfunc)SwigPyObject_oct, /*nb_oct*/ + (unaryfunc)SwigPyObject_hex, /*nb_hex*/ #endif #if PY_VERSION_HEX >= 0x03050000 /* 3.5 */ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 /* nb_inplace_add -> nb_inplace_matrix_multiply */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_matrix_multiply */ #elif PY_VERSION_HEX >= 0x03000000 /* 3.0 */ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ #else - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 /* nb_inplace_add -> nb_index */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ #endif - }; + }; - static PyTypeObject swigpyobject_type; - static int type_init = 0; - if (! type_init) { - const PyTypeObject tmp = { + static PyTypeObject swigpyobject_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp = { #if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(NULL, 0) + PyVarObject_HEAD_INIT(NULL, 0) #else - PyObject_HEAD_INIT(NULL) 0, /* ob_size */ + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ #endif - "SwigPyObject", /* tp_name */ - sizeof(SwigPyObject), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyObject_dealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc)0, /* tp_getattr */ - (setattrfunc)0, /* tp_setattr */ + "SwigPyObject", /* tp_name */ + sizeof(SwigPyObject), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)SwigPyObject_dealloc, /* tp_dealloc */ + 0, /* tp_print */ + (getattrfunc)0, /* tp_getattr */ + (setattrfunc)0, /* tp_setattr */ #if PY_VERSION_HEX >= 0x03000000 - 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ + 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ #else - (cmpfunc)SwigPyObject_compare, /* tp_compare */ + (cmpfunc)SwigPyObject_compare, /* tp_compare */ #endif - (reprfunc)SwigPyObject_repr, /* tp_repr */ - &SwigPyObject_as_number, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - 0, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigobject_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - (richcmpfunc)SwigPyObject_richcompare, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ - 0, /* tp_iter */ - 0, /* tp_iternext */ - swigobject_methods, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ - 0, /* tp_del */ - 0, /* tp_version_tag */ + (reprfunc)SwigPyObject_repr, /* tp_repr */ + &SwigPyObject_as_number, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + 0, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigobject_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */ + 0, /* tp_weaklistoffset */ + 0, /* tp_iter */ + 0, /* tp_iternext */ + swigobject_methods, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ + 0, /* tp_del */ + 0, /* tp_version_tag */ #if PY_VERSION_HEX >= 0x03040000 - 0, /* tp_finalize */ + 0, /* tp_finalize */ #endif #if PY_VERSION_HEX >= 0x03080000 - 0, /* tp_vectorcall */ + 0, /* tp_vectorcall */ #endif #if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000) - 0, /* tp_print */ + 0, /* tp_print */ #endif #ifdef COUNT_ALLOCS - 0, /* tp_allocs */ - 0, /* tp_frees */ - 0, /* tp_maxalloc */ - 0, /* tp_prev */ - 0 /* tp_next */ + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ + 0, /* tp_prev */ + 0 /* tp_next */ #endif - }; - swigpyobject_type = tmp; - type_init = 1; - if (PyType_Ready(&swigpyobject_type) < 0) - return NULL; - } - return &swigpyobject_type; + }; + swigpyobject_type = tmp; + type_init = 1; + if (PyType_Ready(&swigpyobject_type) < 0) + return NULL; + } + return &swigpyobject_type; } -SWIGRUNTIME PyObject* SwigPyObject_New(void* ptr, swig_type_info* ty, int own) +SWIGRUNTIME PyObject * +SwigPyObject_New(void *ptr, swig_type_info *ty, int own) { - SwigPyObject* sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); - if (sobj) { - sobj->ptr = ptr; - sobj->ty = ty; - sobj->own = own; - sobj->next = 0; - } - return (PyObject*)sobj; + SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); + if (sobj) { + sobj->ptr = ptr; + sobj->ty = ty; + sobj->own = own; + sobj->next = 0; + } + return (PyObject *)sobj; } /* ----------------------------------------------------------------------------- @@ -1924,448 +1817,436 @@ SWIGRUNTIME PyObject* SwigPyObject_New(void* ptr, swig_type_info* ty, int own) * ----------------------------------------------------------------------------- */ typedef struct { - PyObject_HEAD void* pack; - swig_type_info* ty; - size_t size; + PyObject_HEAD + void *pack; + swig_type_info *ty; + size_t size; } SwigPyPacked; -SWIGRUNTIME PyObject* SwigPyPacked_repr(SwigPyPacked* v) +SWIGRUNTIME PyObject * +SwigPyPacked_repr(SwigPyPacked *v) { - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { - return SWIG_Python_str_FromFormat("", result, v->ty->name); - } - else { - return SWIG_Python_str_FromFormat("", v->ty->name); - } + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { + return SWIG_Python_str_FromFormat("", result, v->ty->name); + } else { + return SWIG_Python_str_FromFormat("", v->ty->name); + } } -SWIGRUNTIME PyObject* SwigPyPacked_str(SwigPyPacked* v) +SWIGRUNTIME PyObject * +SwigPyPacked_str(SwigPyPacked *v) { - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { - return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); - } - else { - return SWIG_Python_str_FromChar(v->ty->name); - } + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ + return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); + } else { + return SWIG_Python_str_FromChar(v->ty->name); + } } -SWIGRUNTIME int SwigPyPacked_compare(SwigPyPacked* v, SwigPyPacked* w) +SWIGRUNTIME int +SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) { - size_t i = v->size; - size_t j = w->size; - int s = (i < j) ? -1 : ((i > j) ? 1 : 0); - return s ? s : strncmp((const char*)v->pack, (const char*)w->pack, 2 * v->size); + size_t i = v->size; + size_t j = w->size; + int s = (i < j) ? -1 : ((i > j) ? 1 : 0); + return s ? s : strncmp((const char *)v->pack, (const char *)w->pack, 2*v->size); } SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void); -SWIGRUNTIME PyTypeObject* SwigPyPacked_type(void) -{ - static PyTypeObject* SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce(); - return type; +SWIGRUNTIME PyTypeObject* +SwigPyPacked_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce(); + return type; } -SWIGRUNTIMEINLINE int SwigPyPacked_Check(PyObject* op) -{ - return ((op)->ob_type == SwigPyPacked_TypeOnce()) || (strcmp((op)->ob_type->tp_name, "SwigPyPacked") == 0); +SWIGRUNTIMEINLINE int +SwigPyPacked_Check(PyObject *op) { + return ((op)->ob_type == SwigPyPacked_TypeOnce()) + || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); } -SWIGRUNTIME void SwigPyPacked_dealloc(PyObject* v) +SWIGRUNTIME void +SwigPyPacked_dealloc(PyObject *v) { - if (SwigPyPacked_Check(v)) { - SwigPyPacked* sobj = (SwigPyPacked*)v; - free(sobj->pack); - } - PyObject_DEL(v); + if (SwigPyPacked_Check(v)) { + SwigPyPacked *sobj = (SwigPyPacked *) v; + free(sobj->pack); + } + PyObject_DEL(v); } -SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void) -{ - static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; - static PyTypeObject swigpypacked_type; - static int type_init = 0; - if (! type_init) { - const PyTypeObject tmp = { -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(NULL, 0) +SWIGRUNTIME PyTypeObject* +SwigPyPacked_TypeOnce(void) { + static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; + static PyTypeObject swigpypacked_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp = { +#if PY_VERSION_HEX>=0x03000000 + PyVarObject_HEAD_INIT(NULL, 0) #else - PyObject_HEAD_INIT(NULL) 0, /* ob_size */ + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ #endif - "SwigPyPacked", /* tp_name */ - sizeof(SwigPyPacked), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc)0, /* tp_getattr */ - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX >= 0x03000000 - 0, /* tp_reserved in 3.0.1 */ + "SwigPyPacked", /* tp_name */ + sizeof(SwigPyPacked), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ + 0, /* tp_print */ + (getattrfunc)0, /* tp_getattr */ + (setattrfunc)0, /* tp_setattr */ +#if PY_VERSION_HEX>=0x03000000 + 0, /* tp_reserved in 3.0.1 */ #else - (cmpfunc)SwigPyPacked_compare, /* tp_compare */ + (cmpfunc)SwigPyPacked_compare, /* tp_compare */ #endif - (reprfunc)SwigPyPacked_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyPacked_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigpacked_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ - 0, /* tp_iter */ - 0, /* tp_iternext */ - 0, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ - 0, /* tp_del */ - 0, /* tp_version_tag */ + (reprfunc)SwigPyPacked_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + (reprfunc)SwigPyPacked_str, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigpacked_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ + 0, /* tp_iter */ + 0, /* tp_iternext */ + 0, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ + 0, /* tp_del */ + 0, /* tp_version_tag */ #if PY_VERSION_HEX >= 0x03040000 - 0, /* tp_finalize */ + 0, /* tp_finalize */ #endif #if PY_VERSION_HEX >= 0x03080000 - 0, /* tp_vectorcall */ + 0, /* tp_vectorcall */ #endif #if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000) - 0, /* tp_print */ + 0, /* tp_print */ #endif #ifdef COUNT_ALLOCS - 0, /* tp_allocs */ - 0, /* tp_frees */ - 0, /* tp_maxalloc */ - 0, /* tp_prev */ - 0 /* tp_next */ + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ + 0, /* tp_prev */ + 0 /* tp_next */ #endif - }; - swigpypacked_type = tmp; - type_init = 1; - if (PyType_Ready(&swigpypacked_type) < 0) - return NULL; - } - return &swigpypacked_type; + }; + swigpypacked_type = tmp; + type_init = 1; + if (PyType_Ready(&swigpypacked_type) < 0) + return NULL; + } + return &swigpypacked_type; } -SWIGRUNTIME PyObject* SwigPyPacked_New(void* ptr, size_t size, swig_type_info* ty) +SWIGRUNTIME PyObject * +SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) { - SwigPyPacked* sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); - if (sobj) { - void* pack = malloc(size); - if (pack) { - memcpy(pack, ptr, size); - sobj->pack = pack; - sobj->ty = ty; - sobj->size = size; - } - else { - PyObject_DEL((PyObject*)sobj); - sobj = 0; - } + SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); + if (sobj) { + void *pack = malloc(size); + if (pack) { + memcpy(pack, ptr, size); + sobj->pack = pack; + sobj->ty = ty; + sobj->size = size; + } else { + PyObject_DEL((PyObject *) sobj); + sobj = 0; } - return (PyObject*)sobj; + } + return (PyObject *) sobj; } -SWIGRUNTIME swig_type_info* SwigPyPacked_UnpackData(PyObject* obj, void* ptr, size_t size) +SWIGRUNTIME swig_type_info * +SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) { - if (SwigPyPacked_Check(obj)) { - SwigPyPacked* sobj = (SwigPyPacked*)obj; - if (sobj->size != size) - return 0; - memcpy(ptr, sobj->pack, size); - return sobj->ty; - } - else { - return 0; - } + if (SwigPyPacked_Check(obj)) { + SwigPyPacked *sobj = (SwigPyPacked *)obj; + if (sobj->size != size) return 0; + memcpy(ptr, sobj->pack, size); + return sobj->ty; + } else { + return 0; + } } /* ----------------------------------------------------------------------------- * pointers/data manipulation * ----------------------------------------------------------------------------- */ -static PyObject* Swig_This_global = NULL; +static PyObject *Swig_This_global = NULL; -SWIGRUNTIME PyObject* SWIG_This(void) +SWIGRUNTIME PyObject * +SWIG_This(void) { - if (Swig_This_global == NULL) - Swig_This_global = SWIG_Python_str_FromChar("this"); - return Swig_This_global; + if (Swig_This_global == NULL) + Swig_This_global = SWIG_Python_str_FromChar("this"); + return Swig_This_global; } /* #define SWIG_PYTHON_SLOW_GETSET_THIS */ /* TODO: I don't know how to implement the fast getset in Python 3 right now */ -#if PY_VERSION_HEX >= 0x03000000 -#define SWIG_PYTHON_SLOW_GETSET_THIS +#if PY_VERSION_HEX>=0x03000000 +#define SWIG_PYTHON_SLOW_GETSET_THIS #endif -SWIGRUNTIME SwigPyObject* SWIG_Python_GetSwigThis(PyObject* pyobj) +SWIGRUNTIME SwigPyObject * +SWIG_Python_GetSwigThis(PyObject *pyobj) { - PyObject* obj; + PyObject *obj; - if (SwigPyObject_Check(pyobj)) - return (SwigPyObject*)pyobj; + if (SwigPyObject_Check(pyobj)) + return (SwigPyObject *) pyobj; #ifdef SWIGPYTHON_BUILTIN - (void)obj; -#ifdef PyWeakref_CheckProxy - if (PyWeakref_CheckProxy(pyobj)) { - pyobj = PyWeakref_GET_OBJECT(pyobj); - if (pyobj && SwigPyObject_Check(pyobj)) - return (SwigPyObject*)pyobj; - } -#endif - return NULL; + (void)obj; +# ifdef PyWeakref_CheckProxy + if (PyWeakref_CheckProxy(pyobj)) { + pyobj = PyWeakref_GET_OBJECT(pyobj); + if (pyobj && SwigPyObject_Check(pyobj)) + return (SwigPyObject*) pyobj; + } +# endif + return NULL; #else - obj = 0; + obj = 0; -#if ! defined(SWIG_PYTHON_SLOW_GETSET_THIS) - if (PyInstance_Check(pyobj)) { - obj = _PyInstance_Lookup(pyobj, SWIG_This()); - } - else { - PyObject** dictptr = _PyObject_GetDictPtr(pyobj); - if (dictptr != NULL) { - PyObject* dict = *dictptr; - obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; - } - else { +#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + if (PyInstance_Check(pyobj)) { + obj = _PyInstance_Lookup(pyobj, SWIG_This()); + } else { + PyObject **dictptr = _PyObject_GetDictPtr(pyobj); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; + } else { #ifdef PyWeakref_CheckProxy - if (PyWeakref_CheckProxy(pyobj)) { - PyObject* wobj = PyWeakref_GET_OBJECT(pyobj); - return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; - } + if (PyWeakref_CheckProxy(pyobj)) { + PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); + return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; + } #endif - obj = PyObject_GetAttr(pyobj, SWIG_This()); - if (obj) { - Py_DECREF(obj); - } - else { - if (PyErr_Occurred()) - PyErr_Clear(); - return 0; - } - } + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } } + } #else - obj = PyObject_GetAttr(pyobj, SWIG_This()); - if (obj) { - Py_DECREF(obj); - } - else { - if (PyErr_Occurred()) - PyErr_Clear(); - return 0; - } + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } #endif - if (obj && ! SwigPyObject_Check(obj)) { - /* a PyObject is called 'this', try to get the 'real this' - SwigPyObject from it */ - return SWIG_Python_GetSwigThis(obj); - } - return (SwigPyObject*)obj; + if (obj && !SwigPyObject_Check(obj)) { + /* a PyObject is called 'this', try to get the 'real this' + SwigPyObject from it */ + return SWIG_Python_GetSwigThis(obj); + } + return (SwigPyObject *)obj; #endif } /* Acquire a pointer value */ -SWIGRUNTIME int SWIG_Python_AcquirePtr(PyObject* obj, int own) -{ - if (own == SWIG_POINTER_OWN) { - SwigPyObject* sobj = SWIG_Python_GetSwigThis(obj); - if (sobj) { - int oldown = sobj->own; - sobj->own = own; - return oldown; - } +SWIGRUNTIME int +SWIG_Python_AcquirePtr(PyObject *obj, int own) { + if (own == SWIG_POINTER_OWN) { + SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); + if (sobj) { + int oldown = sobj->own; + sobj->own = own; + return oldown; } - return 0; + } + return 0; } /* Convert a pointer value */ -SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn(PyObject* obj, void** ptr, swig_type_info* ty, int flags, int* own) -{ - int res; - SwigPyObject* sobj; - int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0; +SWIGRUNTIME int +SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { + int res; + SwigPyObject *sobj; + int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0; - if (! obj) - return SWIG_ERROR; - if (obj == Py_None && ! implicit_conv) { - if (ptr) - *ptr = 0; - return (flags & SWIG_POINTER_NO_NULL) ? SWIG_NullReferenceError : SWIG_OK; + if (!obj) + return SWIG_ERROR; + if (obj == Py_None && !implicit_conv) { + if (ptr) + *ptr = 0; + return (flags & SWIG_POINTER_NO_NULL) ? SWIG_NullReferenceError : SWIG_OK; + } + + res = SWIG_ERROR; + + sobj = SWIG_Python_GetSwigThis(obj); + if (own) + *own = 0; + while (sobj) { + void *vptr = sobj->ptr; + if (ty) { + swig_type_info *to = sobj->ty; + if (to == ty) { + /* no type cast needed */ + if (ptr) *ptr = vptr; + break; + } else { + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) { + sobj = (SwigPyObject *)sobj->next; + } else { + if (ptr) { + int newmemory = 0; + *ptr = SWIG_TypeCast(tc,vptr,&newmemory); + if (newmemory == SWIG_CAST_NEW_MEMORY) { + assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */ + if (own) + *own = *own | SWIG_CAST_NEW_MEMORY; + } + } + break; + } + } + } else { + if (ptr) *ptr = vptr; + break; } - - res = SWIG_ERROR; - - sobj = SWIG_Python_GetSwigThis(obj); + } + if (sobj) { if (own) - *own = 0; - while (sobj) { - void* vptr = sobj->ptr; - if (ty) { - swig_type_info* to = sobj->ty; - if (to == ty) { - /* no type cast needed */ - if (ptr) - *ptr = vptr; - break; - } - else { - swig_cast_info* tc = SWIG_TypeCheck(to->name, ty); - if (! tc) { - sobj = (SwigPyObject*)sobj->next; - } - else { - if (ptr) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc, vptr, &newmemory); - if (newmemory == SWIG_CAST_NEW_MEMORY) { - assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use - own to delete *ptr */ - if (own) - *own = *own | SWIG_CAST_NEW_MEMORY; - } - } - break; - } - } - } - else { - if (ptr) - *ptr = vptr; - break; - } + *own = *own | sobj->own; + if (flags & SWIG_POINTER_DISOWN) { + sobj->own = 0; } - if (sobj) { - if (own) - *own = *own | sobj->own; - if (flags & SWIG_POINTER_DISOWN) { - sobj->own = 0; + res = SWIG_OK; + } else { + if (implicit_conv) { + SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; + if (data && !data->implicitconv) { + PyObject *klass = data->klass; + if (klass) { + PyObject *impconv; + data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ + impconv = SWIG_Python_CallFunctor(klass, obj); + data->implicitconv = 0; + if (PyErr_Occurred()) { + PyErr_Clear(); + impconv = 0; + } + if (impconv) { + SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); + if (iobj) { + void *vptr; + res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); + if (SWIG_IsOK(res)) { + if (ptr) { + *ptr = vptr; + /* transfer the ownership to 'ptr' */ + iobj->own = 0; + res = SWIG_AddCast(res); + res = SWIG_AddNewMask(res); + } else { + res = SWIG_AddCast(res); + } + } + } + Py_DECREF(impconv); + } } + } + if (!SWIG_IsOK(res) && obj == Py_None) { + if (ptr) + *ptr = 0; + if (PyErr_Occurred()) + PyErr_Clear(); res = SWIG_OK; + } } - else { - if (implicit_conv) { - SwigPyClientData* data = ty ? (SwigPyClientData*)ty->clientdata : 0; - if (data && ! data->implicitconv) { - PyObject* klass = data->klass; - if (klass) { - PyObject* impconv; - data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ - impconv = SWIG_Python_CallFunctor(klass, obj); - data->implicitconv = 0; - if (PyErr_Occurred()) { - PyErr_Clear(); - impconv = 0; - } - if (impconv) { - SwigPyObject* iobj = SWIG_Python_GetSwigThis(impconv); - if (iobj) { - void* vptr; - res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); - if (SWIG_IsOK(res)) { - if (ptr) { - *ptr = vptr; - /* transfer the ownership to 'ptr' */ - iobj->own = 0; - res = SWIG_AddCast(res); - res = SWIG_AddNewMask(res); - } - else { - res = SWIG_AddCast(res); - } - } - } - Py_DECREF(impconv); - } - } - } - if (! SWIG_IsOK(res) && obj == Py_None) { - if (ptr) - *ptr = 0; - if (PyErr_Occurred()) - PyErr_Clear(); - res = SWIG_OK; - } - } - } - return res; + } + return res; } /* Convert a function ptr value */ -SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr(PyObject* obj, void** ptr, swig_type_info* ty) -{ - if (! PyCFunction_Check(obj)) { - return SWIG_ConvertPtr(obj, ptr, ty, 0); - } - else { - void* vptr = 0; - swig_cast_info* tc; +SWIGRUNTIME int +SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { + if (!PyCFunction_Check(obj)) { + return SWIG_ConvertPtr(obj, ptr, ty, 0); + } else { + void *vptr = 0; + swig_cast_info *tc; - /* here we get the method pointer for callbacks */ - const char* doc = (((PyCFunctionObject*)obj)->m_ml->ml_doc); - const char* desc = doc ? strstr(doc, "swig_ptr: ") : 0; - if (desc) - desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; - if (! desc) - return SWIG_ERROR; - tc = SWIG_TypeCheck(desc, ty); - if (tc) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc, vptr, &newmemory); - assert(! newmemory); /* newmemory handling not yet implemented */ - } - else { - return SWIG_ERROR; - } - return SWIG_OK; + /* here we get the method pointer for callbacks */ + const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); + const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; + if (desc) + desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; + if (!desc) + return SWIG_ERROR; + tc = SWIG_TypeCheck(desc,ty); + if (tc) { + int newmemory = 0; + *ptr = SWIG_TypeCast(tc,vptr,&newmemory); + assert(!newmemory); /* newmemory handling not yet implemented */ + } else { + return SWIG_ERROR; } + return SWIG_OK; + } } /* Convert a packed pointer value */ -SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject* obj, void* ptr, size_t sz, swig_type_info* ty) -{ - swig_type_info* to = SwigPyPacked_UnpackData(obj, ptr, sz); - if (! to) - return SWIG_ERROR; - if (ty) { - if (to != ty) { - /* check type cast? */ - swig_cast_info* tc = SWIG_TypeCheck(to->name, ty); - if (! tc) - return SWIG_ERROR; - } +SWIGRUNTIME int +SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { + swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); + if (!to) return SWIG_ERROR; + if (ty) { + if (to != ty) { + /* check type cast? */ + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) return SWIG_ERROR; } - return SWIG_OK; -} + } + return SWIG_OK; +} /* ----------------------------------------------------------------------------- * Create a new pointer object @@ -2376,437 +2257,424 @@ SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject* obj, void* ptr, size_t sz, s 'this' attribute. */ -SWIGRUNTIME PyObject* SWIG_Python_NewShadowInstance(SwigPyClientData* data, PyObject* swig_this) +SWIGRUNTIME PyObject* +SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) { - PyObject* inst = 0; - PyObject* newraw = data->newraw; - if (newraw) { - inst = PyObject_Call(newraw, data->newargs, NULL); - if (inst) { -#if ! defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject** dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - PyObject* dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - PyDict_SetItem(dict, SWIG_This(), swig_this); - } - } + PyObject *inst = 0; + PyObject *newraw = data->newraw; + if (newraw) { + inst = PyObject_Call(newraw, data->newargs, NULL); + if (inst) { +#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + PyDict_SetItem(dict, SWIG_This(), swig_this); + } + } #else - if (PyObject_SetAttr(inst, SWIG_This(), swig_this) == -1) { - Py_DECREF(inst); - inst = 0; - } + if (PyObject_SetAttr(inst, SWIG_This(), swig_this) == -1) { + Py_DECREF(inst); + inst = 0; + } #endif - } } - else { + } else { #if PY_VERSION_HEX >= 0x03000000 - PyObject* empty_args = PyTuple_New(0); - if (empty_args) { - PyObject* empty_kwargs = PyDict_New(); - if (empty_kwargs) { - inst = ((PyTypeObject*)data->newargs)->tp_new((PyTypeObject*)data->newargs, empty_args, empty_kwargs); - Py_DECREF(empty_kwargs); - if (inst) { - if (PyObject_SetAttr(inst, SWIG_This(), swig_this) == -1) { - Py_DECREF(inst); - inst = 0; - } - else { - Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; - } - } - } - Py_DECREF(empty_args); + PyObject *empty_args = PyTuple_New(0); + if (empty_args) { + PyObject *empty_kwargs = PyDict_New(); + if (empty_kwargs) { + inst = ((PyTypeObject *)data->newargs)->tp_new((PyTypeObject *)data->newargs, empty_args, empty_kwargs); + Py_DECREF(empty_kwargs); + if (inst) { + if (PyObject_SetAttr(inst, SWIG_This(), swig_this) == -1) { + Py_DECREF(inst); + inst = 0; + } else { + Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; + } } + } + Py_DECREF(empty_args); + } #else - PyObject* dict = PyDict_New(); - if (dict) { - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); - } -#endif - } - return inst; -} - -SWIGRUNTIME int SWIG_Python_SetSwigThis(PyObject* inst, PyObject* swig_this) -{ -#if ! defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject** dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - PyObject* dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - } - return PyDict_SetItem(dict, SWIG_This(), swig_this); + PyObject *dict = PyDict_New(); + if (dict) { + PyDict_SetItem(dict, SWIG_This(), swig_this); + inst = PyInstance_NewRaw(data->newargs, dict); + Py_DECREF(dict); } #endif - return PyObject_SetAttr(inst, SWIG_This(), swig_this); + } + return inst; } -SWIGINTERN PyObject* SWIG_Python_InitShadowInstance(PyObject* args) +SWIGRUNTIME int +SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) { - PyObject* obj[2]; - if (! SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) { +#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + } + return PyDict_SetItem(dict, SWIG_This(), swig_this); + } +#endif + return PyObject_SetAttr(inst, SWIG_This(), swig_this); +} + + +SWIGINTERN PyObject * +SWIG_Python_InitShadowInstance(PyObject *args) { + PyObject *obj[2]; + if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) { + return NULL; + } else { + SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); + if (sthis) { + SwigPyObject_append((PyObject*) sthis, obj[1]); + } else { + if (SWIG_Python_SetSwigThis(obj[0], obj[1]) != 0) return NULL; } - else { - SwigPyObject* sthis = SWIG_Python_GetSwigThis(obj[0]); - if (sthis) { - SwigPyObject_append((PyObject*)sthis, obj[1]); - } - else { - if (SWIG_Python_SetSwigThis(obj[0], obj[1]) != 0) - return NULL; - } - return SWIG_Py_Void(); - } + return SWIG_Py_Void(); + } } /* Create a new pointer object */ -SWIGRUNTIME PyObject* SWIG_Python_NewPointerObj(PyObject* self, void* ptr, swig_type_info* type, int flags) -{ - SwigPyClientData* clientdata; - PyObject* robj; - int own; +SWIGRUNTIME PyObject * +SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) { + SwigPyClientData *clientdata; + PyObject * robj; + int own; - if (! ptr) - return SWIG_Py_Void(); + if (!ptr) + return SWIG_Py_Void(); - clientdata = type ? (SwigPyClientData*)(type->clientdata) : 0; - own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - if (clientdata && clientdata->pytype) { - SwigPyObject* newobj; - if (flags & SWIG_BUILTIN_TP_INIT) { - newobj = (SwigPyObject*)self; - if (newobj->ptr) { - PyObject* next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0); - while (newobj->next) - newobj = (SwigPyObject*)newobj->next; - newobj->next = next_self; - newobj = (SwigPyObject*)next_self; + clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; + own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; + if (clientdata && clientdata->pytype) { + SwigPyObject *newobj; + if (flags & SWIG_BUILTIN_TP_INIT) { + newobj = (SwigPyObject*) self; + if (newobj->ptr) { + PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0); + while (newobj->next) + newobj = (SwigPyObject *) newobj->next; + newobj->next = next_self; + newobj = (SwigPyObject *)next_self; #ifdef SWIGPYTHON_BUILTIN - newobj->dict = 0; + newobj->dict = 0; #endif - } - } - else { - newobj = PyObject_New(SwigPyObject, clientdata->pytype); + } + } else { + newobj = PyObject_New(SwigPyObject, clientdata->pytype); #ifdef SWIGPYTHON_BUILTIN - newobj->dict = 0; + newobj->dict = 0; #endif - } - if (newobj) { - newobj->ptr = ptr; - newobj->ty = type; - newobj->own = own; - newobj->next = 0; - return (PyObject*)newobj; - } - return SWIG_Py_Void(); } - - assert(! (flags & SWIG_BUILTIN_TP_INIT)); - - robj = SwigPyObject_New(ptr, type, own); - if (robj && clientdata && ! (flags & SWIG_POINTER_NOSHADOW)) { - PyObject* inst = SWIG_Python_NewShadowInstance(clientdata, robj); - Py_DECREF(robj); - robj = inst; + if (newobj) { + newobj->ptr = ptr; + newobj->ty = type; + newobj->own = own; + newobj->next = 0; + return (PyObject*) newobj; } - return robj; + return SWIG_Py_Void(); + } + + assert(!(flags & SWIG_BUILTIN_TP_INIT)); + + robj = SwigPyObject_New(ptr, type, own); + if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { + PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); + Py_DECREF(robj); + robj = inst; + } + return robj; } /* Create a new packed object */ -SWIGRUNTIMEINLINE PyObject* SWIG_Python_NewPackedObj(void* ptr, size_t sz, swig_type_info* type) -{ - return ptr ? SwigPyPacked_New((void*)ptr, sz, type) : SWIG_Py_Void(); +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { + return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); } /* -----------------------------------------------------------------------------* - * Get type list + * Get type list * -----------------------------------------------------------------------------*/ #ifdef SWIG_LINK_RUNTIME -void* SWIG_ReturnGlobalTypeList(void*); +void *SWIG_ReturnGlobalTypeList(void *); #endif -SWIGRUNTIME swig_module_info* SWIG_Python_GetModule(void* SWIGUNUSEDPARM(clientdata)) -{ - static void* type_pointer = (void*)0; - /* first check if module already created */ - if (! type_pointer) { +SWIGRUNTIME swig_module_info * +SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) { + static void *type_pointer = (void *)0; + /* first check if module already created */ + if (!type_pointer) { #ifdef SWIG_LINK_RUNTIME - type_pointer = SWIG_ReturnGlobalTypeList((void*)0); + type_pointer = SWIG_ReturnGlobalTypeList((void *)0); #else - type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0); - if (PyErr_Occurred()) { - PyErr_Clear(); - type_pointer = (void*)0; - } + type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0); + if (PyErr_Occurred()) { + PyErr_Clear(); + type_pointer = (void *)0; + } #endif - } - return (swig_module_info*)type_pointer; + } + return (swig_module_info *) type_pointer; } -SWIGRUNTIME void SWIG_Python_DestroyModule(PyObject* obj) +SWIGRUNTIME void +SWIG_Python_DestroyModule(PyObject *obj) { - swig_module_info* swig_module = (swig_module_info*)PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME); - swig_type_info** types = swig_module->types; - size_t i; - for (i = 0; i < swig_module->size; ++i) { - swig_type_info* ty = types[i]; - if (ty->owndata) { - SwigPyClientData* data = (SwigPyClientData*)ty->clientdata; - if (data) - SwigPyClientData_Del(data); - } + swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME); + swig_type_info **types = swig_module->types; + size_t i; + for (i =0; i < swig_module->size; ++i) { + swig_type_info *ty = types[i]; + if (ty->owndata) { + SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; + if (data) SwigPyClientData_Del(data); } - Py_DECREF(SWIG_This()); - Swig_This_global = NULL; + } + Py_DECREF(SWIG_This()); + Swig_This_global = NULL; } -SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info* swig_module) -{ +SWIGRUNTIME void +SWIG_Python_SetModule(swig_module_info *swig_module) { #if PY_VERSION_HEX >= 0x03000000 - /* Add a dummy module object into sys.modules */ - PyObject* module = PyImport_AddModule("swig_runtime_data" SWIG_RUNTIME_VERSION); + /* Add a dummy module object into sys.modules */ + PyObject *module = PyImport_AddModule("swig_runtime_data" SWIG_RUNTIME_VERSION); #else - static PyMethodDef swig_empty_runtime_method_table[] = { { NULL, NULL, 0, NULL } }; /* Sentinel */ - PyObject* module = Py_InitModule("swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); + static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */ + PyObject *module = Py_InitModule("swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); #endif - PyObject* pointer = PyCapsule_New((void*)swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule); - if (pointer && module) { - PyModule_AddObject(module, "type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer); - } - else { - Py_XDECREF(pointer); - } + PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule); + if (pointer && module) { + PyModule_AddObject(module, "type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer); + } else { + Py_XDECREF(pointer); + } } /* The python cached type query */ -SWIGRUNTIME PyObject* SWIG_Python_TypeCache(void) -{ - static PyObject* SWIG_STATIC_POINTER(cache) = PyDict_New(); - return cache; +SWIGRUNTIME PyObject * +SWIG_Python_TypeCache(void) { + static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); + return cache; } -SWIGRUNTIME swig_type_info* SWIG_Python_TypeQuery(const char* type) +SWIGRUNTIME swig_type_info * +SWIG_Python_TypeQuery(const char *type) { - PyObject* cache = SWIG_Python_TypeCache(); - PyObject* key = SWIG_Python_str_FromChar(type); - PyObject* obj = PyDict_GetItem(cache, key); - swig_type_info* descriptor; - if (obj) { - descriptor = (swig_type_info*)PyCapsule_GetPointer(obj, NULL); + PyObject *cache = SWIG_Python_TypeCache(); + PyObject *key = SWIG_Python_str_FromChar(type); + PyObject *obj = PyDict_GetItem(cache, key); + swig_type_info *descriptor; + if (obj) { + descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL); + } else { + swig_module_info *swig_module = SWIG_GetModule(0); + descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); + if (descriptor) { + obj = PyCapsule_New((void*) descriptor, NULL, NULL); + PyDict_SetItem(cache, key, obj); + Py_DECREF(obj); } - else { - swig_module_info* swig_module = SWIG_GetModule(0); - descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); - if (descriptor) { - obj = PyCapsule_New((void*)descriptor, NULL, NULL); - PyDict_SetItem(cache, key, obj); - Py_DECREF(obj); - } - } - Py_DECREF(key); - return descriptor; + } + Py_DECREF(key); + return descriptor; } -/* +/* For backward compatibility only */ -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) -#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) +#define SWIG_POINTER_EXCEPTION 0 +#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) +#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) -SWIGRUNTIME int SWIG_Python_AddErrMesg(const char* mesg, int infront) +SWIGRUNTIME int +SWIG_Python_AddErrMesg(const char* mesg, int infront) +{ + if (PyErr_Occurred()) { + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + PyErr_Fetch(&type, &value, &traceback); + if (value) { + PyObject *old_str = PyObject_Str(value); + const char *tmp = SWIG_Python_str_AsChar(old_str); + const char *errmesg = tmp ? tmp : "Invalid error message"; + Py_XINCREF(type); + PyErr_Clear(); + if (infront) { + PyErr_Format(type, "%s %s", mesg, errmesg); + } else { + PyErr_Format(type, "%s %s", errmesg, mesg); + } + SWIG_Python_str_DelForPy3(tmp); + Py_DECREF(old_str); + } + return 1; + } else { + return 0; + } +} + +SWIGRUNTIME int +SWIG_Python_ArgFail(int argnum) { - if (PyErr_Occurred()) { - PyObject* type = 0; - PyObject* value = 0; - PyObject* traceback = 0; - PyErr_Fetch(&type, &value, &traceback); - if (value) { - PyObject* old_str = PyObject_Str(value); - const char* tmp = SWIG_Python_str_AsChar(old_str); - const char* errmesg = tmp ? tmp : "Invalid error message"; - Py_XINCREF(type); - PyErr_Clear(); - if (infront) { - PyErr_Format(type, "%s %s", mesg, errmesg); - } - else { - PyErr_Format(type, "%s %s", errmesg, mesg); - } - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - } - return 1; - } - else { - return 0; - } + if (PyErr_Occurred()) { + /* add information about failing argument */ + char mesg[256]; + PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); + return SWIG_Python_AddErrMesg(mesg, 1); + } else { + return 0; + } } -SWIGRUNTIME int SWIG_Python_ArgFail(int argnum) +SWIGRUNTIMEINLINE const char * +SwigPyObject_GetDesc(PyObject *self) { - if (PyErr_Occurred()) { - /* add information about failing argument */ - char mesg[256]; - PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); - return SWIG_Python_AddErrMesg(mesg, 1); - } - else { - return 0; - } + SwigPyObject *v = (SwigPyObject *)self; + swig_type_info *ty = v ? v->ty : 0; + return ty ? ty->str : ""; } -SWIGRUNTIMEINLINE const char* SwigPyObject_GetDesc(PyObject* self) +SWIGRUNTIME void +SWIG_Python_TypeError(const char *type, PyObject *obj) { - SwigPyObject* v = (SwigPyObject*)self; - swig_type_info* ty = v ? v->ty : 0; - return ty ? ty->str : ""; -} - -SWIGRUNTIME void SWIG_Python_TypeError(const char* type, PyObject* obj) -{ - if (type) { + if (type) { #if defined(SWIG_COBJECT_TYPES) - if (obj && SwigPyObject_Check(obj)) { - const char* otype = (const char*)SwigPyObject_GetDesc(obj); - if (otype) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", type, otype); - return; - } - } - else -#endif - { - const char* otype = (obj ? obj->ob_type->tp_name : 0); - if (otype) { - PyObject* str = PyObject_Str(obj); - const char* cstr = str ? SWIG_Python_str_AsChar(str) : 0; - if (cstr) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", type, otype, cstr); - SWIG_Python_str_DelForPy3(cstr); - } - else { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", type, otype); - } - Py_XDECREF(str); - return; - } - } - PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); - } - else { - PyErr_Format(PyExc_TypeError, "unexpected type is received"); - } + if (obj && SwigPyObject_Check(obj)) { + const char *otype = (const char *) SwigPyObject_GetDesc(obj); + if (otype) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", + type, otype); + return; + } + } else +#endif + { + const char *otype = (obj ? obj->ob_type->tp_name : 0); + if (otype) { + PyObject *str = PyObject_Str(obj); + const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0; + if (cstr) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", + type, otype, cstr); + SWIG_Python_str_DelForPy3(cstr); + } else { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", + type, otype); + } + Py_XDECREF(str); + return; + } + } + PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); + } else { + PyErr_Format(PyExc_TypeError, "unexpected type is received"); + } } + /* Convert a pointer value, signal an exception on a type mismatch */ -SWIGRUNTIME void* SWIG_Python_MustGetPtr(PyObject* obj, swig_type_info* ty, int SWIGUNUSEDPARM(argnum), int flags) -{ - void* result; - if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { - PyErr_Clear(); +SWIGRUNTIME void * +SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) { + void *result; + if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { + PyErr_Clear(); #if SWIG_POINTER_EXCEPTION - if (flags) { - SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); - SWIG_Python_ArgFail(argnum); - } -#endif + if (flags) { + SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); + SWIG_Python_ArgFail(argnum); } - return result; +#endif + } + return result; } #ifdef SWIGPYTHON_BUILTIN -SWIGRUNTIME int SWIG_Python_NonDynamicSetAttr(PyObject* obj, PyObject* name, PyObject* value) -{ - PyTypeObject* tp = obj->ob_type; - PyObject* descr; - PyObject* encoded_name; - descrsetfunc f; - int res = -1; +SWIGRUNTIME int +SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { + PyTypeObject *tp = obj->ob_type; + PyObject *descr; + PyObject *encoded_name; + descrsetfunc f; + int res = -1; -#ifdef Py_USING_UNICODE +# ifdef Py_USING_UNICODE + if (PyString_Check(name)) { + name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL); + if (!name) + return -1; + } else if (!PyUnicode_Check(name)) +# else + if (!PyString_Check(name)) +# endif + { + PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name); + return -1; + } else { + Py_INCREF(name); + } + + if (!tp->tp_dict) { + if (PyType_Ready(tp) < 0) + goto done; + } + + descr = _PyType_Lookup(tp, name); + f = NULL; + if (descr != NULL) + f = descr->ob_type->tp_descr_set; + if (!f) { if (PyString_Check(name)) { - name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL); - if (! name) - return -1; - } - else if (! PyUnicode_Check(name)) -#else - if (! PyString_Check(name)) -#endif - { - PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name); + encoded_name = name; + Py_INCREF(name); + } else { + encoded_name = PyUnicode_AsUTF8String(name); + if (!encoded_name) return -1; } - else { - Py_INCREF(name); - } - - if (! tp->tp_dict) { - if (PyType_Ready(tp) < 0) - goto done; - } - - descr = _PyType_Lookup(tp, name); - f = NULL; - if (descr != NULL) - f = descr->ob_type->tp_descr_set; - if (! f) { - if (PyString_Check(name)) { - encoded_name = name; - Py_INCREF(name); - } - else { - encoded_name = PyUnicode_AsUTF8String(name); - if (! encoded_name) - return -1; - } - PyErr_Format( - PyExc_AttributeError, - "'%.100s' object has no attribute '%.200s'", - tp->tp_name, - PyString_AsString(encoded_name)); - Py_DECREF(encoded_name); - } - else { - res = f(descr, obj, value); - } - -done: - Py_DECREF(name); - return res; + PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name)); + Py_DECREF(encoded_name); + } else { + res = f(descr, obj, value); + } + + done: + Py_DECREF(name); + return res; } #endif + #ifdef __cplusplus } #endif -#define SWIG_exception_fail(code, msg) \ - do { \ - SWIG_Error(code, msg); \ - SWIG_fail; \ - } while (0) -#define SWIG_contract_assert(expr, msg) \ - if (! (expr)) { \ - SWIG_Error(SWIG_RuntimeError, msg); \ - SWIG_fail; \ - } \ - else + +#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) + +#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else + + #ifdef __cplusplus extern "C" { @@ -2814,9 +2682,9 @@ extern "C" { /* Method creation and docstring support functions */ -SWIGINTERN PyMethodDef* SWIG_PythonGetProxyDoc(const char* name); -SWIGINTERN PyObject* SWIG_PyInstanceMethod_New(PyObject* SWIGUNUSEDPARM(self), PyObject* func); -SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyObject* func); +SWIGINTERN PyMethodDef *SWIG_PythonGetProxyDoc(const char *name); +SWIGINTERN PyObject *SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func); +SWIGINTERN PyObject *SWIG_PyStaticMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func); #ifdef __cplusplus } @@ -2847,11 +2715,12 @@ SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyO #ifndef SWIG_DIRECTOR_PYTHON_HEADER_ #define SWIG_DIRECTOR_PYTHON_HEADER_ -#include -#include -#include #include +#include +#include #include +#include + /* Use -DSWIG_PYTHON_DIRECTOR_NO_VTABLE if you don't want to generate a 'virtual @@ -2865,6 +2734,8 @@ SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyO #endif #endif + + /* Use -DSWIG_DIRECTOR_NO_UEH if you prefer to avoid the use of the Undefined Exception Handler provided by swig. @@ -2875,6 +2746,7 @@ SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyO #endif #endif + /* Use -DSWIG_DIRECTOR_NORTTI if you prefer to avoid the use of the native C++ RTTI and dynamic_cast<>. But be aware that directors @@ -2885,438 +2757,397 @@ SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyO When we don't use the native C++ RTTI, we implement a minimal one only for Directors. */ -#ifndef SWIG_DIRECTOR_RTDIR -#define SWIG_DIRECTOR_RTDIR +# ifndef SWIG_DIRECTOR_RTDIR +# define SWIG_DIRECTOR_RTDIR namespace Swig { -class Director; -SWIGINTERN std::map& get_rtdir_map() -{ - static std::map rtdir_map; + class Director; + SWIGINTERN std::map& get_rtdir_map() { + static std::map rtdir_map; return rtdir_map; -} + } -SWIGINTERNINLINE void set_rtdir(void* vptr, Director* rtdir) -{ + SWIGINTERNINLINE void set_rtdir(void *vptr, Director *rtdir) { get_rtdir_map()[vptr] = rtdir; -} + } -SWIGINTERNINLINE Director* get_rtdir(void* vptr) -{ - std::map::const_iterator pos = get_rtdir_map().find(vptr); - Director* rtdir = (pos != get_rtdir_map().end()) ? pos->second : 0; + SWIGINTERNINLINE Director *get_rtdir(void *vptr) { + std::map::const_iterator pos = get_rtdir_map().find(vptr); + Director *rtdir = (pos != get_rtdir_map().end()) ? pos->second : 0; return rtdir; + } } -} // namespace Swig -#endif /* SWIG_DIRECTOR_RTDIR */ +# endif /* SWIG_DIRECTOR_RTDIR */ -#define SWIG_DIRECTOR_CAST(ARG) Swig::get_rtdir(static_cast(ARG)) -#define SWIG_DIRECTOR_RGTR(ARG1, ARG2) Swig::set_rtdir(static_cast(ARG1), ARG2) +# define SWIG_DIRECTOR_CAST(ARG) Swig::get_rtdir(static_cast(ARG)) +# define SWIG_DIRECTOR_RGTR(ARG1, ARG2) Swig::set_rtdir(static_cast(ARG1), ARG2) #else -#define SWIG_DIRECTOR_CAST(ARG) dynamic_cast(ARG) -#define SWIG_DIRECTOR_RGTR(ARG1, ARG2) +# define SWIG_DIRECTOR_CAST(ARG) dynamic_cast(ARG) +# define SWIG_DIRECTOR_RGTR(ARG1, ARG2) #endif /* SWIG_DIRECTOR_NORTTI */ extern "C" { -struct swig_type_info; + struct swig_type_info; } namespace Swig { -/* memory handler */ -struct GCItem { - virtual ~GCItem() - { + /* memory handler */ + struct GCItem { + virtual ~GCItem() {} + + virtual int get_own() const { + return 0; + } + }; + + struct GCItem_var { + GCItem_var(GCItem *item = 0) : _item(item) { } - virtual int get_own() const - { - return 0; - } -}; - -struct GCItem_var { - GCItem_var(GCItem* item = 0) : _item(item) - { + GCItem_var& operator=(GCItem *item) { + GCItem *tmp = _item; + _item = item; + delete tmp; + return *this; } - GCItem_var& operator=(GCItem* item) - { - GCItem* tmp = _item; - _item = item; - delete tmp; - return *this; + ~GCItem_var() { + delete _item; } - ~GCItem_var() - { - delete _item; - } - - GCItem* operator->() const - { - return _item; + GCItem * operator->() const { + return _item; } private: - GCItem* _item; -}; + GCItem *_item; + }; -struct GCItem_Object : GCItem { - GCItem_Object(int own) : _own(own) - { + struct GCItem_Object : GCItem { + GCItem_Object(int own) : _own(own) { } - virtual ~GCItem_Object() - { + virtual ~GCItem_Object() { } - int get_own() const - { - return _own; + int get_own() const { + return _own; } private: int _own; -}; + }; -template struct GCItem_T : GCItem { - GCItem_T(Type* ptr) : _ptr(ptr) - { + template + struct GCItem_T : GCItem { + GCItem_T(Type *ptr) : _ptr(ptr) { } - virtual ~GCItem_T() - { - delete _ptr; + virtual ~GCItem_T() { + delete _ptr; } private: - Type* _ptr; -}; + Type *_ptr; + }; -template struct GCArray_T : GCItem { - GCArray_T(Type* ptr) : _ptr(ptr) - { + template + struct GCArray_T : GCItem { + GCArray_T(Type *ptr) : _ptr(ptr) { } - virtual ~GCArray_T() - { - delete[] _ptr; + virtual ~GCArray_T() { + delete[] _ptr; } private: - Type* _ptr; -}; + Type *_ptr; + }; -/* base class for director exceptions */ -class DirectorException : public std::exception { + /* base class for director exceptions */ + class DirectorException : public std::exception { protected: std::string swig_msg; - public: - DirectorException(PyObject* error, const char* hdr = "", const char* msg = "") : swig_msg(hdr) - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - if (msg[0]) { - swig_msg += " "; - swig_msg += msg; - } - if (! PyErr_Occurred()) { - PyErr_SetString(error, what()); - } - SWIG_PYTHON_THREAD_END_BLOCK; + DirectorException(PyObject *error, const char *hdr ="", const char *msg ="") : swig_msg(hdr) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + if (msg[0]) { + swig_msg += " "; + swig_msg += msg; + } + if (!PyErr_Occurred()) { + PyErr_SetString(error, what()); + } + SWIG_PYTHON_THREAD_END_BLOCK; } - virtual ~DirectorException() throw() - { + virtual ~DirectorException() throw() { } /* Deprecated, use what() instead */ - const char* getMessage() const - { - return what(); + const char *getMessage() const { + return what(); } - const char* what() const throw() - { - return swig_msg.c_str(); + const char *what() const throw() { + return swig_msg.c_str(); } - static void raise(PyObject* error, const char* msg) - { - throw DirectorException(error, msg); + static void raise(PyObject *error, const char *msg) { + throw DirectorException(error, msg); } - static void raise(const char* msg) - { - raise(PyExc_RuntimeError, msg); + static void raise(const char *msg) { + raise(PyExc_RuntimeError, msg); } -}; + }; -/* type mismatch in the return value from a python method call */ -class DirectorTypeMismatchException : public DirectorException { + /* type mismatch in the return value from a python method call */ + class DirectorTypeMismatchException : public DirectorException { public: - DirectorTypeMismatchException(PyObject* error, const char* msg = "") - : DirectorException(error, "SWIG director type mismatch", msg) - { + DirectorTypeMismatchException(PyObject *error, const char *msg="") + : DirectorException(error, "SWIG director type mismatch", msg) { } - DirectorTypeMismatchException(const char* msg = "") - : DirectorException(PyExc_TypeError, "SWIG director type mismatch", msg) - { + DirectorTypeMismatchException(const char *msg="") + : DirectorException(PyExc_TypeError, "SWIG director type mismatch", msg) { } - static void raise(PyObject* error, const char* msg) - { - throw DirectorTypeMismatchException(error, msg); + static void raise(PyObject *error, const char *msg) { + throw DirectorTypeMismatchException(error, msg); } - static void raise(const char* msg) - { - throw DirectorTypeMismatchException(msg); + static void raise(const char *msg) { + throw DirectorTypeMismatchException(msg); } -}; + }; -/* any python exception that occurs during a director method call */ -class DirectorMethodException : public DirectorException { + /* any python exception that occurs during a director method call */ + class DirectorMethodException : public DirectorException { public: - DirectorMethodException(const char* msg = "") - : DirectorException(PyExc_RuntimeError, "SWIG director method error.", msg) - { + DirectorMethodException(const char *msg = "") + : DirectorException(PyExc_RuntimeError, "SWIG director method error.", msg) { } - static void raise(const char* msg) - { - throw DirectorMethodException(msg); + static void raise(const char *msg) { + throw DirectorMethodException(msg); } -}; + }; -/* attempt to call a pure virtual method via a director method */ -class DirectorPureVirtualException : public DirectorException { + /* attempt to call a pure virtual method via a director method */ + class DirectorPureVirtualException : public DirectorException { public: - DirectorPureVirtualException(const char* msg = "") - : DirectorException(PyExc_RuntimeError, "SWIG director pure virtual method called", msg) - { + DirectorPureVirtualException(const char *msg = "") + : DirectorException(PyExc_RuntimeError, "SWIG director pure virtual method called", msg) { } - static void raise(const char* msg) - { - throw DirectorPureVirtualException(msg); + static void raise(const char *msg) { + throw DirectorPureVirtualException(msg); } -}; + }; + #if defined(SWIG_PYTHON_THREADS) /* __THREAD__ is the old macro to activate some thread support */ -#if ! defined(__THREAD__) -#define __THREAD__ 1 -#endif +# if !defined(__THREAD__) +# define __THREAD__ 1 +# endif #endif #ifdef __THREAD__ -#include "pythread.h" -class Guard { - PyThread_type_lock& mutex_; +# include "pythread.h" + class Guard { + PyThread_type_lock &mutex_; public: - Guard(PyThread_type_lock& mutex) : mutex_(mutex) - { - PyThread_acquire_lock(mutex_, WAIT_LOCK); + Guard(PyThread_type_lock & mutex) : mutex_(mutex) { + PyThread_acquire_lock(mutex_, WAIT_LOCK); } - ~Guard() - { - PyThread_release_lock(mutex_); + ~Guard() { + PyThread_release_lock(mutex_); } -}; -#define SWIG_GUARD(mutex) Guard _guard(mutex) + }; +# define SWIG_GUARD(mutex) Guard _guard(mutex) #else -#define SWIG_GUARD(mutex) +# define SWIG_GUARD(mutex) #endif -/* director base class */ -class Director { + /* director base class */ + class Director { private: /* pointer to the wrapped python object */ - PyObject* swig_self; + PyObject *swig_self; /* flag indicating whether the object is owned by python or c++ */ mutable bool swig_disown_flag; /* decrement the reference count of the wrapped python object */ - void swig_decref() const - { - if (swig_disown_flag) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - Py_DECREF(swig_self); - SWIG_PYTHON_THREAD_END_BLOCK; - } + void swig_decref() const { + if (swig_disown_flag) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + Py_DECREF(swig_self); + SWIG_PYTHON_THREAD_END_BLOCK; + } } public: /* wrap a python object. */ - Director(PyObject* self) : swig_self(self), swig_disown_flag(false) - { + Director(PyObject *self) : swig_self(self), swig_disown_flag(false) { } /* discard our reference at destruction */ - virtual ~Director() - { - swig_decref(); + virtual ~Director() { + swig_decref(); } /* return a pointer to the wrapped python object */ - PyObject* swig_get_self() const - { - return swig_self; + PyObject *swig_get_self() const { + return swig_self; } /* acquire ownership of the wrapped python object (the sense of "disown" is from python) */ - void swig_disown() const - { - if (! swig_disown_flag) { - swig_disown_flag = true; - swig_incref(); - } + void swig_disown() const { + if (!swig_disown_flag) { + swig_disown_flag=true; + swig_incref(); + } } /* increase the reference count of the wrapped python object */ - void swig_incref() const - { - if (swig_disown_flag) { - Py_INCREF(swig_self); - } + void swig_incref() const { + if (swig_disown_flag) { + Py_INCREF(swig_self); + } } /* methods to implement pseudo protected director members */ - virtual bool swig_get_inner(const char* /* swig_protected_method_name */) const - { - return true; + virtual bool swig_get_inner(const char * /* swig_protected_method_name */) const { + return true; } - virtual void swig_set_inner(const char* /* swig_protected_method_name */, bool /* swig_val */) const - { + virtual void swig_set_inner(const char * /* swig_protected_method_name */, bool /* swig_val */) const { } - /* ownership management */ + /* ownership management */ private: - typedef std::map swig_ownership_map; + typedef std::map swig_ownership_map; mutable swig_ownership_map swig_owner; #ifdef __THREAD__ static PyThread_type_lock swig_mutex_own; #endif public: - template void swig_acquire_ownership_array(Type* vptr) const - { - if (vptr) { - SWIG_GUARD(swig_mutex_own); - swig_owner[vptr] = new GCArray_T(vptr); - } + template + void swig_acquire_ownership_array(Type *vptr) const { + if (vptr) { + SWIG_GUARD(swig_mutex_own); + swig_owner[vptr] = new GCArray_T(vptr); + } } - template void swig_acquire_ownership(Type* vptr) const - { - if (vptr) { - SWIG_GUARD(swig_mutex_own); - swig_owner[vptr] = new GCItem_T(vptr); - } + template + void swig_acquire_ownership(Type *vptr) const { + if (vptr) { + SWIG_GUARD(swig_mutex_own); + swig_owner[vptr] = new GCItem_T(vptr); + } } - void swig_acquire_ownership_obj(void* vptr, int own) const - { - if (vptr && own) { - SWIG_GUARD(swig_mutex_own); - swig_owner[vptr] = new GCItem_Object(own); - } + void swig_acquire_ownership_obj(void *vptr, int own) const { + if (vptr && own) { + SWIG_GUARD(swig_mutex_own); + swig_owner[vptr] = new GCItem_Object(own); + } } - int swig_release_ownership(void* vptr) const - { - int own = 0; - if (vptr) { - SWIG_GUARD(swig_mutex_own); - swig_ownership_map::iterator iter = swig_owner.find(vptr); - if (iter != swig_owner.end()) { - own = iter->second->get_own(); - swig_owner.erase(iter); - } + int swig_release_ownership(void *vptr) const { + int own = 0; + if (vptr) { + SWIG_GUARD(swig_mutex_own); + swig_ownership_map::iterator iter = swig_owner.find(vptr); + if (iter != swig_owner.end()) { + own = iter->second->get_own(); + swig_owner.erase(iter); } - return own; + } + return own; } - template static PyObject* swig_pyobj_disown(PyObject* pyobj, PyObject* SWIGUNUSEDPARM(args)) - { - SwigPyObject* sobj = (SwigPyObject*)pyobj; - sobj->own = 0; - Director* d = SWIG_DIRECTOR_CAST(reinterpret_cast(sobj->ptr)); - if (d) - d->swig_disown(); - return PyWeakref_NewProxy(pyobj, NULL); + template + static PyObject *swig_pyobj_disown(PyObject *pyobj, PyObject *SWIGUNUSEDPARM(args)) { + SwigPyObject *sobj = (SwigPyObject *)pyobj; + sobj->own = 0; + Director *d = SWIG_DIRECTOR_CAST(reinterpret_cast(sobj->ptr)); + if (d) + d->swig_disown(); + return PyWeakref_NewProxy(pyobj, NULL); } -}; + }; #ifdef __THREAD__ -PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock(); + PyThread_type_lock Director::swig_mutex_own = PyThread_allocate_lock(); #endif -} // namespace Swig +} #endif /* -------- TYPES TABLE (BEGIN) -------- */ #define SWIGTYPE_p_PythonDirectorCallbackClass swig_types[0] -#define SWIGTYPE_p_a_32__p_char swig_types[1] -#define SWIGTYPE_p_char swig_types[2] -#define SWIGTYPE_p_int swig_types[3] -#define SWIGTYPE_p_long_long swig_types[4] -#define SWIGTYPE_p_p_char swig_types[5] -#define SWIGTYPE_p_short swig_types[6] -#define SWIGTYPE_p_signed_char swig_types[7] -#define SWIGTYPE_p_ssize_t swig_types[8] -#define SWIGTYPE_p_unsigned_char swig_types[9] -#define SWIGTYPE_p_unsigned_int swig_types[10] -#define SWIGTYPE_p_unsigned_long_long swig_types[11] -#define SWIGTYPE_p_unsigned_short swig_types[12] -#define SWIGTYPE_p_void swig_types[13] -#define SWIGTYPE_p_zts_addr_info_t swig_types[14] -#define SWIGTYPE_p_zts_errno_t swig_types[15] -#define SWIGTYPE_p_zts_error_t swig_types[16] -#define SWIGTYPE_p_zts_event_msg_t swig_types[17] -#define SWIGTYPE_p_zts_event_t swig_types[18] -#define SWIGTYPE_p_zts_fd_set swig_types[19] -#define SWIGTYPE_p_zts_hostent swig_types[20] -#define SWIGTYPE_p_zts_iovec swig_types[21] -#define SWIGTYPE_p_zts_ip4_addr swig_types[22] -#define SWIGTYPE_p_zts_ip6_addr swig_types[23] -#define SWIGTYPE_p_zts_ip_addr swig_types[24] -#define SWIGTYPE_p_zts_msghdr swig_types[25] -#define SWIGTYPE_p_zts_multicast_group_t swig_types[26] -#define SWIGTYPE_p_zts_net_info_t swig_types[27] -#define SWIGTYPE_p_zts_net_info_type_t swig_types[28] -#define SWIGTYPE_p_zts_netif_info_t swig_types[29] -#define SWIGTYPE_p_zts_network_status_t swig_types[30] -#define SWIGTYPE_p_zts_node_info_t swig_types[31] -#define SWIGTYPE_p_zts_path_t swig_types[32] -#define SWIGTYPE_p_zts_peer_info_t swig_types[33] -#define SWIGTYPE_p_zts_peer_role_t swig_types[34] -#define SWIGTYPE_p_zts_pollfd swig_types[35] -#define SWIGTYPE_p_zts_root_set_t swig_types[36] -#define SWIGTYPE_p_zts_route_info_t swig_types[37] -#define SWIGTYPE_p_zts_sockaddr swig_types[38] -#define SWIGTYPE_p_zts_sockaddr_storage swig_types[39] -#define SWIGTYPE_p_zts_stats_counter_t swig_types[40] -#define SWIGTYPE_p_zts_timeval swig_types[41] -static swig_type_info* swig_types[43]; -static swig_module_info swig_module = { swig_types, 42, 0, 0, 0, 0 }; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) +#define SWIGTYPE_p_a_32__p_char swig_types[1] +#define SWIGTYPE_p_char swig_types[2] +#define SWIGTYPE_p_int swig_types[3] +#define SWIGTYPE_p_long_long swig_types[4] +#define SWIGTYPE_p_p_char swig_types[5] +#define SWIGTYPE_p_short swig_types[6] +#define SWIGTYPE_p_signed_char swig_types[7] +#define SWIGTYPE_p_ssize_t swig_types[8] +#define SWIGTYPE_p_unsigned_char swig_types[9] +#define SWIGTYPE_p_unsigned_int swig_types[10] +#define SWIGTYPE_p_unsigned_long_long swig_types[11] +#define SWIGTYPE_p_unsigned_short swig_types[12] +#define SWIGTYPE_p_void swig_types[13] +#define SWIGTYPE_p_zts_addr_info_t swig_types[14] +#define SWIGTYPE_p_zts_errno_t swig_types[15] +#define SWIGTYPE_p_zts_error_t swig_types[16] +#define SWIGTYPE_p_zts_event_msg_t swig_types[17] +#define SWIGTYPE_p_zts_event_t swig_types[18] +#define SWIGTYPE_p_zts_fd_set swig_types[19] +#define SWIGTYPE_p_zts_hostent swig_types[20] +#define SWIGTYPE_p_zts_iovec swig_types[21] +#define SWIGTYPE_p_zts_ip4_addr swig_types[22] +#define SWIGTYPE_p_zts_ip6_addr swig_types[23] +#define SWIGTYPE_p_zts_ip_addr swig_types[24] +#define SWIGTYPE_p_zts_msghdr swig_types[25] +#define SWIGTYPE_p_zts_multicast_group_t swig_types[26] +#define SWIGTYPE_p_zts_net_info_t swig_types[27] +#define SWIGTYPE_p_zts_net_info_type_t swig_types[28] +#define SWIGTYPE_p_zts_netif_info_t swig_types[29] +#define SWIGTYPE_p_zts_network_status_t swig_types[30] +#define SWIGTYPE_p_zts_node_info_t swig_types[31] +#define SWIGTYPE_p_zts_path_t swig_types[32] +#define SWIGTYPE_p_zts_peer_info_t swig_types[33] +#define SWIGTYPE_p_zts_peer_role_t swig_types[34] +#define SWIGTYPE_p_zts_pollfd swig_types[35] +#define SWIGTYPE_p_zts_root_set_t swig_types[36] +#define SWIGTYPE_p_zts_route_info_t swig_types[37] +#define SWIGTYPE_p_zts_sockaddr swig_types[38] +#define SWIGTYPE_p_zts_sockaddr_storage swig_types[39] +#define SWIGTYPE_p_zts_stats_counter_t swig_types[40] +#define SWIGTYPE_p_zts_timeval swig_types[41] +static swig_type_info *swig_types[43]; +static swig_module_info swig_module = {swig_types, 42, 0, 0, 0, 0}; +#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) /* -------- TYPES TABLE (END) -------- */ #ifdef SWIG_TypeQuery -#undef SWIG_TypeQuery +# undef SWIG_TypeQuery #endif #define SWIG_TypeQuery SWIG_Python_TypeQuery @@ -3324,641 +3155,632 @@ static swig_module_info swig_module = { swig_types, 42, 0, 0, 0, 0 }; @(target):= _libzt.so ------------------------------------------------*/ #if PY_VERSION_HEX >= 0x03000000 -#define SWIG_init PyInit__libzt +# define SWIG_init PyInit__libzt #else -#define SWIG_init init_libzt +# define SWIG_init init_libzt #endif -#define SWIG_name "_libzt" +#define SWIG_name "_libzt" -#define SWIGVERSION 0x040002 +#define SWIGVERSION 0x040002 #define SWIG_VERSION SWIGVERSION -#define SWIG_as_voidptr(a) const_cast(static_cast(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a), reinterpret_cast(a)) + +#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) +#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) + #include + namespace swig { -class SwigPtr_PyObject { + class SwigPtr_PyObject { protected: - PyObject* _obj; + PyObject *_obj; public: - SwigPtr_PyObject() : _obj(0) + SwigPtr_PyObject() :_obj(0) { } SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + Py_XINCREF(_obj); + SWIG_PYTHON_THREAD_END_BLOCK; + } + + SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) + { + if (initial_ref) { SWIG_PYTHON_THREAD_BEGIN_BLOCK; Py_XINCREF(_obj); SWIG_PYTHON_THREAD_END_BLOCK; + } + } + + SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) + { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + Py_XINCREF(item._obj); + Py_XDECREF(_obj); + _obj = item._obj; + SWIG_PYTHON_THREAD_END_BLOCK; + return *this; + } + + ~SwigPtr_PyObject() + { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + Py_XDECREF(_obj); + SWIG_PYTHON_THREAD_END_BLOCK; + } + + operator PyObject *() const + { + return _obj; } - SwigPtr_PyObject(PyObject* obj, bool initial_ref = true) : _obj(obj) + PyObject *operator->() const { - if (initial_ref) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - Py_XINCREF(_obj); - SWIG_PYTHON_THREAD_END_BLOCK; - } + return _obj; } + }; +} - SwigPtr_PyObject& operator=(const SwigPtr_PyObject& item) - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - Py_XINCREF(item._obj); - Py_XDECREF(_obj); - _obj = item._obj; - SWIG_PYTHON_THREAD_END_BLOCK; - return *this; - } - - ~SwigPtr_PyObject() - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - Py_XDECREF(_obj); - SWIG_PYTHON_THREAD_END_BLOCK; - } - - operator PyObject*() const - { - return _obj; - } - - PyObject* operator->() const - { - return _obj; - } -}; -} // namespace swig namespace swig { -struct SwigVar_PyObject : SwigPtr_PyObject { - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) + struct SwigVar_PyObject : SwigPtr_PyObject { + SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } + + SwigVar_PyObject & operator = (PyObject* obj) { + Py_XDECREF(_obj); + _obj = obj; + return *this; } - - SwigVar_PyObject& operator=(PyObject* obj) - { - Py_XDECREF(_obj); - _obj = obj; - return *this; - } -}; -} // namespace swig - -#include // Use the C99 official header - -SWIGINTERNINLINE PyObject* SWIG_From_int(int value) -{ - return PyInt_FromLong((long)value); + }; } + +#include // Use the C99 official header + + +SWIGINTERNINLINE PyObject* + SWIG_From_int (int value) +{ + return PyInt_FromLong((long) value); +} + + #include "ZeroTierSockets.h" +#include "PythonSockets.h" + #include -#if ! defined(SWIG_NO_LLONG_MAX) -#if ! defined(LLONG_MAX) && defined(__GNUC__) && defined(__LONG_LONG_MAX__) -#define LLONG_MAX __LONG_LONG_MAX__ -#define LLONG_MIN (-LLONG_MAX - 1LL) -#define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -#endif +#if !defined(SWIG_NO_LLONG_MAX) +# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) +# define LLONG_MAX __LONG_LONG_MAX__ +# define LLONG_MIN (-LLONG_MAX - 1LL) +# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) +# endif #endif -SWIGINTERN int SWIG_AsVal_double(PyObject* obj, double* val) + +SWIGINTERN int +SWIG_AsVal_double (PyObject *obj, double *val) { - int res = SWIG_TypeError; - if (PyFloat_Check(obj)) { - if (val) - *val = PyFloat_AsDouble(obj); - return SWIG_OK; + int res = SWIG_TypeError; + if (PyFloat_Check(obj)) { + if (val) *val = PyFloat_AsDouble(obj); + return SWIG_OK; #if PY_VERSION_HEX < 0x03000000 - } - else if (PyInt_Check(obj)) { - if (val) - *val = (double)PyInt_AsLong(obj); - return SWIG_OK; + } else if (PyInt_Check(obj)) { + if (val) *val = (double) PyInt_AsLong(obj); + return SWIG_OK; #endif + } else if (PyLong_Check(obj)) { + double v = PyLong_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); } - else if (PyLong_Check(obj)) { - double v = PyLong_AsDouble(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_OK; - } - else { - PyErr_Clear(); - } - } + } #ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - double d = PyFloat_AsDouble(obj); - if (! PyErr_Occurred()) { - if (val) - *val = d; - return SWIG_AddCast(SWIG_OK); - } - else { - PyErr_Clear(); - } - if (! dispatch) { - long v = PyLong_AsLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); - } - else { - PyErr_Clear(); - } - } + { + int dispatch = 0; + double d = PyFloat_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = d; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); } + if (!dispatch) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); + } else { + PyErr_Clear(); + } + } + } #endif - return res; + return res; } + #include + + #include -SWIGINTERNINLINE int SWIG_CanCastAsInteger(double* d, double min, double max) -{ - double x = *d; - if ((min <= x && x <= max)) { - double fx = floor(x); - double cx = ceil(x); - double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ - if ((errno == EDOM) || (errno == ERANGE)) { - errno = 0; - } - else { - double summ, reps, diff; - if (rd < x) { - diff = x - rd; - } - else if (rd > x) { - diff = rd - x; - } - else { - return 1; - } - summ = rd + x; - reps = diff / summ; - if (reps < 8 * DBL_EPSILON) { - *d = rd; - return 1; - } - } - } - return 0; + +SWIGINTERNINLINE int +SWIG_CanCastAsInteger(double *d, double min, double max) { + double x = *d; + if ((min <= x && x <= max)) { + double fx = floor(x); + double cx = ceil(x); + double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ + if ((errno == EDOM) || (errno == ERANGE)) { + errno = 0; + } else { + double summ, reps, diff; + if (rd < x) { + diff = x - rd; + } else if (rd > x) { + diff = rd - x; + } else { + return 1; + } + summ = rd + x; + reps = diff/summ; + if (reps < 8*DBL_EPSILON) { + *d = rd; + return 1; + } + } + } + return 0; } -SWIGINTERN int SWIG_AsVal_long(PyObject* obj, long* val) + +SWIGINTERN int +SWIG_AsVal_long (PyObject *obj, long* val) { #if PY_VERSION_HEX < 0x03000000 - if (PyInt_Check(obj)) { - if (val) - *val = PyInt_AsLong(obj); - return SWIG_OK; - } - else + if (PyInt_Check(obj)) { + if (val) *val = PyInt_AsLong(obj); + return SWIG_OK; + } else #endif - if (PyLong_Check(obj)) { - long v = PyLong_AsLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_OK; - } - else { - PyErr_Clear(); - return SWIG_OverflowError; - } + if (PyLong_Check(obj)) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + return SWIG_OverflowError; } + } #ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - long v = PyInt_AsLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_AddCast(SWIG_OK); - } - else { - PyErr_Clear(); - } - if (! dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double(obj, &d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { - if (val) - *val = (long)(d); - return res; - } - } + { + int dispatch = 0; + long v = PyInt_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { + if (val) *val = (long)(d); + return res; + } + } + } #endif - return SWIG_TypeError; + return SWIG_TypeError; } -SWIGINTERN int SWIG_AsVal_int(PyObject* obj, int* val) + +SWIGINTERN int +SWIG_AsVal_int (PyObject * obj, int *val) { - long v; - int res = SWIG_AsVal_long(obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + long v; + int res = SWIG_AsVal_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v < INT_MIN || v > INT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< int >(v); } - return res; + } + return res; } -SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_int(unsigned int value) + +SWIGINTERNINLINE PyObject* + SWIG_From_unsigned_SS_int (unsigned int value) { - return PyInt_FromSize_t((size_t)value); + return PyInt_FromSize_t((size_t) value); } -#define SWIG_From_long PyInt_FromLong -SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_long(unsigned long value) + #define SWIG_From_long PyInt_FromLong + + +SWIGINTERNINLINE PyObject* +SWIG_From_unsigned_SS_long (unsigned long value) { - return (value > LONG_MAX) ? PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast(value)); + return (value > LONG_MAX) ? + PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast< long >(value)); } -SWIGINTERN int SWIG_AsVal_unsigned_SS_long(PyObject* obj, unsigned long* val) + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) { #if PY_VERSION_HEX < 0x03000000 - if (PyInt_Check(obj)) { - long v = PyInt_AsLong(obj); - if (v >= 0) { - if (val) - *val = v; - return SWIG_OK; - } - else { - return SWIG_OverflowError; - } + if (PyInt_Check(obj)) { + long v = PyInt_AsLong(obj); + if (v >= 0) { + if (val) *val = v; + return SWIG_OK; + } else { + return SWIG_OverflowError; } - else + } else #endif - if (PyLong_Check(obj)) { - unsigned long v = PyLong_AsUnsignedLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_OK; - } - else { - PyErr_Clear(); - return SWIG_OverflowError; - } + if (PyLong_Check(obj)) { + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + return SWIG_OverflowError; } + } #ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - unsigned long v = PyLong_AsUnsignedLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_AddCast(SWIG_OK); - } - else { - PyErr_Clear(); - } - if (! dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double(obj, &d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { - if (val) - *val = (unsigned long)(d); - return res; - } - } + { + int dispatch = 0; + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { + if (val) *val = (unsigned long)(d); + return res; + } + } + } #endif - return SWIG_TypeError; + return SWIG_TypeError; } -#if defined(LLONG_MAX) && ! defined(SWIG_LONG_LONG_AVAILABLE) -#define SWIG_LONG_LONG_AVAILABLE + +#if defined(LLONG_MAX) && !defined(SWIG_LONG_LONG_AVAILABLE) +# define SWIG_LONG_LONG_AVAILABLE #endif + #ifdef SWIG_LONG_LONG_AVAILABLE -SWIGINTERN int SWIG_AsVal_unsigned_SS_long_SS_long(PyObject* obj, unsigned long long* val) +SWIGINTERN int +SWIG_AsVal_unsigned_SS_long_SS_long (PyObject *obj, unsigned long long *val) { - int res = SWIG_TypeError; - if (PyLong_Check(obj)) { - unsigned long long v = PyLong_AsUnsignedLongLong(obj); - if (! PyErr_Occurred()) { - if (val) - *val = v; - return SWIG_OK; - } - else { - PyErr_Clear(); - res = SWIG_OverflowError; - } + int res = SWIG_TypeError; + if (PyLong_Check(obj)) { + unsigned long long v = PyLong_AsUnsignedLongLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + res = SWIG_OverflowError; } - else { - unsigned long v; - res = SWIG_AsVal_unsigned_SS_long(obj, &v); - if (SWIG_IsOK(res)) { - if (val) - *val = v; - return res; - } + } else { + unsigned long v; + res = SWIG_AsVal_unsigned_SS_long (obj,&v); + if (SWIG_IsOK(res)) { + if (val) *val = v; + return res; } + } #ifdef SWIG_PYTHON_CAST_MODE - { - const double mant_max = 1LL << DBL_MANT_DIG; - double d; - res = SWIG_AsVal_double(obj, &d); - if (SWIG_IsOK(res) && ! SWIG_CanCastAsInteger(&d, 0, mant_max)) - return SWIG_OverflowError; - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, mant_max)) { - if (val) - *val = (unsigned long long)(d); - return SWIG_AddCast(res); - } - res = SWIG_TypeError; + { + const double mant_max = 1LL << DBL_MANT_DIG; + double d; + res = SWIG_AsVal_double (obj,&d); + if (SWIG_IsOK(res) && !SWIG_CanCastAsInteger(&d, 0, mant_max)) + return SWIG_OverflowError; + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, mant_max)) { + if (val) *val = (unsigned long long)(d); + return SWIG_AddCast(res); } + res = SWIG_TypeError; + } #endif - return res; + return res; } #endif + #ifdef SWIG_LONG_LONG_AVAILABLE -SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_long_SS_long(unsigned long long value) +SWIGINTERNINLINE PyObject* +SWIG_From_unsigned_SS_long_SS_long (unsigned long long value) { - return (value > LONG_MAX) ? PyLong_FromUnsignedLongLong(value) : PyInt_FromLong(static_cast(value)); + return (value > LONG_MAX) ? + PyLong_FromUnsignedLongLong(value) : PyInt_FromLong(static_cast< long >(value)); } #endif -SWIGINTERN int SWIG_AsVal_unsigned_SS_short(PyObject* obj, unsigned short* val) + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_short (PyObject * obj, unsigned short *val) { - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long(obj, &v); - if (SWIG_IsOK(res)) { - if ((v > USHRT_MAX)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v > USHRT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< unsigned short >(v); } - return res; + } + return res; } -SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_short(unsigned short value) -{ - return SWIG_From_unsigned_SS_long(value); + +SWIGINTERNINLINE PyObject * +SWIG_From_unsigned_SS_short (unsigned short value) +{ + return SWIG_From_unsigned_SS_long (value); } -SWIGINTERN int SWIG_AsVal_unsigned_SS_char(PyObject* obj, unsigned char* val) + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_char (PyObject * obj, unsigned char *val) { - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long(obj, &v); - if (SWIG_IsOK(res)) { - if ((v > UCHAR_MAX)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v > UCHAR_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< unsigned char >(v); } - return res; + } + return res; } -SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_char(unsigned char value) -{ - return SWIG_From_unsigned_SS_long(value); + +SWIGINTERNINLINE PyObject * +SWIG_From_unsigned_SS_char (unsigned char value) +{ + return SWIG_From_unsigned_SS_long (value); } -SWIGINTERN swig_type_info* SWIG_pchar_descriptor(void) + +SWIGINTERN swig_type_info* +SWIG_pchar_descriptor(void) { - static int init = 0; - static swig_type_info* info = 0; - if (! init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; + static int init = 0; + static swig_type_info* info = 0; + if (!init) { + info = SWIG_TypeQuery("_p_char"); + init = 1; + } + return info; } -SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject* obj, char** cptr, size_t* psize, int* alloc) + +SWIGINTERN int +SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) { -#if PY_VERSION_HEX >= 0x03000000 +#if PY_VERSION_HEX>=0x03000000 #if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) - if (PyBytes_Check(obj)) + if (PyBytes_Check(obj)) #else - if (PyUnicode_Check(obj)) + if (PyUnicode_Check(obj)) #endif -#else - if (PyString_Check(obj)) +#else + if (PyString_Check(obj)) #endif - { - char* cstr; - Py_ssize_t len; - int ret = SWIG_OK; -#if PY_VERSION_HEX >= 0x03000000 -#if ! defined(SWIG_PYTHON_STRICT_BYTE_CHAR) - if (! alloc && cptr) { - /* We can't allow converting without allocation, since the internal - representation of string in Python 3 is UCS-2/UCS-4 but we require - a UTF-8 representation. - TODO(bhy) More detailed explanation */ - return SWIG_RuntimeError; - } - obj = PyUnicode_AsUTF8String(obj); - if (! obj) - return SWIG_TypeError; - if (alloc) - *alloc = SWIG_NEWOBJ; -#endif - if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1) - return SWIG_TypeError; -#else - if (PyString_AsStringAndSize(obj, &cstr, &len) == -1) - return SWIG_TypeError; -#endif - if (cptr) { - if (alloc) { - if (*alloc == SWIG_NEWOBJ) { - *cptr = reinterpret_cast(memcpy(new char[len + 1], cstr, sizeof(char) * (len + 1))); - *alloc = SWIG_NEWOBJ; - } - else { - *cptr = cstr; - *alloc = SWIG_OLDOBJ; - } - } - else { -#if PY_VERSION_HEX >= 0x03000000 -#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) - *cptr = PyBytes_AsString(obj); -#else - assert(0); /* Should never reach here with Unicode strings in Python 3 */ -#endif -#else - *cptr = SWIG_Python_str_AsChar(obj); - if (! *cptr) - ret = SWIG_TypeError; -#endif - } - } - if (psize) - *psize = len + 1; -#if PY_VERSION_HEX >= 0x03000000 && ! defined(SWIG_PYTHON_STRICT_BYTE_CHAR) - Py_XDECREF(obj); -#endif - return ret; + { + char *cstr; Py_ssize_t len; + int ret = SWIG_OK; +#if PY_VERSION_HEX>=0x03000000 +#if !defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + if (!alloc && cptr) { + /* We can't allow converting without allocation, since the internal + representation of string in Python 3 is UCS-2/UCS-4 but we require + a UTF-8 representation. + TODO(bhy) More detailed explanation */ + return SWIG_RuntimeError; } - else { + obj = PyUnicode_AsUTF8String(obj); + if (!obj) + return SWIG_TypeError; + if (alloc) + *alloc = SWIG_NEWOBJ; +#endif + if (PyBytes_AsStringAndSize(obj, &cstr, &len) == -1) + return SWIG_TypeError; +#else + if (PyString_AsStringAndSize(obj, &cstr, &len) == -1) + return SWIG_TypeError; +#endif + if (cptr) { + if (alloc) { + if (*alloc == SWIG_NEWOBJ) { + *cptr = reinterpret_cast< char* >(memcpy(new char[len + 1], cstr, sizeof(char)*(len + 1))); + *alloc = SWIG_NEWOBJ; + } else { + *cptr = cstr; + *alloc = SWIG_OLDOBJ; + } + } else { +#if PY_VERSION_HEX>=0x03000000 +#if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + *cptr = PyBytes_AsString(obj); +#else + assert(0); /* Should never reach here with Unicode strings in Python 3 */ +#endif +#else + *cptr = SWIG_Python_str_AsChar(obj); + if (!*cptr) + ret = SWIG_TypeError; +#endif + } + } + if (psize) *psize = len + 1; +#if PY_VERSION_HEX>=0x03000000 && !defined(SWIG_PYTHON_STRICT_BYTE_CHAR) + Py_XDECREF(obj); +#endif + return ret; + } else { #if defined(SWIG_PYTHON_2_UNICODE) #if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) #error "Cannot use both SWIG_PYTHON_2_UNICODE and SWIG_PYTHON_STRICT_BYTE_CHAR at once" #endif -#if PY_VERSION_HEX < 0x03000000 - if (PyUnicode_Check(obj)) { - char* cstr; - Py_ssize_t len; - if (! alloc && cptr) { - return SWIG_RuntimeError; - } - obj = PyUnicode_AsUTF8String(obj); - if (! obj) - return SWIG_TypeError; - if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) { - if (cptr) { - if (alloc) - *alloc = SWIG_NEWOBJ; - *cptr = reinterpret_cast(memcpy(new char[len + 1], cstr, sizeof(char) * (len + 1))); - } - if (psize) - *psize = len + 1; - - Py_XDECREF(obj); - return SWIG_OK; - } - else { - Py_XDECREF(obj); - } +#if PY_VERSION_HEX<0x03000000 + if (PyUnicode_Check(obj)) { + char *cstr; Py_ssize_t len; + if (!alloc && cptr) { + return SWIG_RuntimeError; + } + obj = PyUnicode_AsUTF8String(obj); + if (!obj) + return SWIG_TypeError; + if (PyString_AsStringAndSize(obj, &cstr, &len) != -1) { + if (cptr) { + if (alloc) *alloc = SWIG_NEWOBJ; + *cptr = reinterpret_cast< char* >(memcpy(new char[len + 1], cstr, sizeof(char)*(len + 1))); } + if (psize) *psize = len + 1; + + Py_XDECREF(obj); + return SWIG_OK; + } else { + Py_XDECREF(obj); + } + } #endif #endif - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - if (pchar_descriptor) { - void* vptr = 0; - if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { - if (cptr) - *cptr = (char*)vptr; - if (psize) - *psize = vptr ? (strlen((char*)vptr) + 1) : 0; - if (alloc) - *alloc = SWIG_OLDOBJ; - return SWIG_OK; - } - } + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + if (pchar_descriptor) { + void* vptr = 0; + if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { + if (cptr) *cptr = (char *) vptr; + if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; + if (alloc) *alloc = SWIG_OLDOBJ; + return SWIG_OK; + } } - return SWIG_TypeError; + } + return SWIG_TypeError; } -SWIGINTERN int SWIG_AsCharArray(PyObject* obj, char* val, size_t size) -{ - char* cptr = 0; - size_t csize = 0; - int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - /* special case of single char conversion when we don't need space for NUL */ - if (size == 1 && csize == 2 && cptr && ! cptr[1]) - --csize; - if (csize <= size) { - if (val) { - if (csize) - memcpy(val, cptr, csize * sizeof(char)); - if (csize < size) - memset(val + csize, 0, (size - csize) * sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) - delete[] cptr; + +SWIGINTERN int +SWIG_AsCharArray(PyObject * obj, char *val, size_t size) +{ + char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; + int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); + if (SWIG_IsOK(res)) { + /* special case of single char conversion when we don't need space for NUL */ + if (size == 1 && csize == 2 && cptr && !cptr[1]) --csize; + if (csize <= size) { + if (val) { + if (csize) memcpy(val, cptr, csize*sizeof(char)); + if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); + } + if (alloc == SWIG_NEWOBJ) { + delete[] cptr; + res = SWIG_DelNewMask(res); + } + return res; } - return SWIG_TypeError; + if (alloc == SWIG_NEWOBJ) delete[] cptr; + } + return SWIG_TypeError; } -SWIGINTERNINLINE PyObject* SWIG_FromCharPtrAndSize(const char* carray, size_t size) + +SWIGINTERNINLINE PyObject * +SWIG_FromCharPtrAndSize(const char* carray, size_t size) { - if (carray) { - if (size > INT_MAX) { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - return pchar_descriptor ? SWIG_InternalNewPointerObj(const_cast(carray), pchar_descriptor, 0) - : SWIG_Py_Void(); - } - else { + if (carray) { + if (size > INT_MAX) { + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + return pchar_descriptor ? + SWIG_InternalNewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); + } else { #if PY_VERSION_HEX >= 0x03000000 #if defined(SWIG_PYTHON_STRICT_BYTE_CHAR) - return PyBytes_FromStringAndSize(carray, static_cast(size)); + return PyBytes_FromStringAndSize(carray, static_cast< Py_ssize_t >(size)); #else - return PyUnicode_DecodeUTF8(carray, static_cast(size), "surrogateescape"); + return PyUnicode_DecodeUTF8(carray, static_cast< Py_ssize_t >(size), "surrogateescape"); #endif #else - return PyString_FromStringAndSize(carray, static_cast(size)); + return PyString_FromStringAndSize(carray, static_cast< Py_ssize_t >(size)); #endif - } - } - else { - return SWIG_Py_Void(); } + } else { + return SWIG_Py_Void(); + } } -SWIGINTERN size_t SWIG_strnlen(const char* s, size_t maxlen) + +SWIGINTERN size_t +SWIG_strnlen(const char* s, size_t maxlen) { - const char* p; - for (p = s; maxlen-- && *p; p++) - ; - return p - s; + const char *p; + for (p = s; maxlen-- && *p; p++) + ; + return p - s; } -SWIGINTERN int SWIG_AsVal_unsigned_SS_int(PyObject* obj, unsigned int* val) + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val) { - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long(obj, &v); - if (SWIG_IsOK(res)) { - if ((v > UINT_MAX)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v > UINT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< unsigned int >(v); } - return res; + } + return res; } -/* Getting isfinite working pre C99 across multiple platforms is non-trivial. Users can provide SWIG_isfinite on older - * platforms. */ + +/* Getting isfinite working pre C99 across multiple platforms is non-trivial. Users can provide SWIG_isfinite on older platforms. */ #ifndef SWIG_isfinite /* isfinite() is a macro for C99 */ -#if defined(isfinite) -#define SWIG_isfinite(X) (isfinite(X)) -#elif defined(__cplusplus) && __cplusplus >= 201103L +# if defined(isfinite) +# define SWIG_isfinite(X) (isfinite(X)) +# elif defined(__cplusplus) && __cplusplus >= 201103L /* Use a template so that this works whether isfinite() is std::isfinite() or * in the global namespace. The reality seems to vary between compiler * versions. @@ -3967,18340 +3789,12708 @@ SWIGINTERN int SWIG_AsVal_unsigned_SS_int(PyObject* obj, unsigned int* val) * * extern "C++" is required as this fragment can end up inside an extern "C" { } block */ -namespace std { +namespace std { } +extern "C++" template +inline int SWIG_isfinite_func(T x) { + using namespace std; + return isfinite(x); } -extern "C++" template inline int SWIG_isfinite_func(T x) -{ - using namespace std; - return isfinite(x); -} -#define SWIG_isfinite(X) (SWIG_isfinite_func(X)) -#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) -#define SWIG_isfinite(X) (__builtin_isfinite(X)) -#elif defined(__clang__) && defined(__has_builtin) -#if __has_builtin(__builtin_isfinite) -#define SWIG_isfinite(X) (__builtin_isfinite(X)) -#endif -#elif defined(_MSC_VER) -#define SWIG_isfinite(X) (_finite(X)) -#elif defined(__sun) && defined(__SVR4) -#include -#define SWIG_isfinite(X) (finite(X)) -#endif +# define SWIG_isfinite(X) (SWIG_isfinite_func(X)) +# elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2)) +# define SWIG_isfinite(X) (__builtin_isfinite(X)) +# elif defined(__clang__) && defined(__has_builtin) +# if __has_builtin(__builtin_isfinite) +# define SWIG_isfinite(X) (__builtin_isfinite(X)) +# endif +# elif defined(_MSC_VER) +# define SWIG_isfinite(X) (_finite(X)) +# elif defined(__sun) && defined(__SVR4) +# include +# define SWIG_isfinite(X) (finite(X)) +# endif #endif + /* Accept infinite as a valid float value unless we are unable to check if a value is finite */ #ifdef SWIG_isfinite -#define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX) && SWIG_isfinite(X)) +# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX) && SWIG_isfinite(X)) #else -#define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX)) +# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX)) #endif -SWIGINTERN int SWIG_AsVal_float(PyObject* obj, float* val) + +SWIGINTERN int +SWIG_AsVal_float (PyObject * obj, float *val) { - double v; - int res = SWIG_AsVal_double(obj, &v); - if (SWIG_IsOK(res)) { - if (SWIG_Float_Overflow_Check(v)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + double v; + int res = SWIG_AsVal_double (obj, &v); + if (SWIG_IsOK(res)) { + if (SWIG_Float_Overflow_Check(v)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< float >(v); } - return res; + } + return res; } -#define SWIG_From_double PyFloat_FromDouble -SWIGINTERNINLINE PyObject* SWIG_From_float(float value) -{ - return SWIG_From_double(value); + #define SWIG_From_double PyFloat_FromDouble + + +SWIGINTERNINLINE PyObject * +SWIG_From_float (float value) +{ + return SWIG_From_double (value); } -SWIGINTERNINLINE PyObject* SWIG_FromCharPtr(const char* cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); + + + + +SWIGINTERNINLINE PyObject * +SWIG_FromCharPtr(const char *cptr) +{ + return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); } -SWIGINTERN int SWIG_AsVal_short(PyObject* obj, short* val) + +SWIGINTERN int +SWIG_AsVal_short (PyObject * obj, short *val) { - long v; - int res = SWIG_AsVal_long(obj, &v); - if (SWIG_IsOK(res)) { - if ((v < SHRT_MIN || v > SHRT_MAX)) { - return SWIG_OverflowError; - } - else { - if (val) - *val = static_cast(v); - } + long v; + int res = SWIG_AsVal_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v < SHRT_MIN || v > SHRT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< short >(v); } - return res; + } + return res; } -SWIGINTERNINLINE PyObject* SWIG_From_short(short value) -{ - return SWIG_From_long(value); + +SWIGINTERNINLINE PyObject * +SWIG_From_short (short value) +{ + return SWIG_From_long (value); } -SWIGINTERNINLINE int SWIG_AsVal_size_t(PyObject* obj, size_t* val) + +SWIGINTERNINLINE int +SWIG_AsVal_size_t (PyObject * obj, size_t *val) { - int res = SWIG_TypeError; + int res = SWIG_TypeError; #ifdef SWIG_LONG_LONG_AVAILABLE - if (sizeof(size_t) <= sizeof(unsigned long)) { + if (sizeof(size_t) <= sizeof(unsigned long)) { #endif - unsigned long v; - res = SWIG_AsVal_unsigned_SS_long(obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) - *val = static_cast(v); + unsigned long v; + res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); #ifdef SWIG_LONG_LONG_AVAILABLE - } - else if (sizeof(size_t) <= sizeof(unsigned long long)) { - unsigned long long v; - res = SWIG_AsVal_unsigned_SS_long_SS_long(obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) - *val = static_cast(v); - } + } else if (sizeof(size_t) <= sizeof(unsigned long long)) { + unsigned long long v; + res = SWIG_AsVal_unsigned_SS_long_SS_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); + } #endif - return res; + return res; } -SWIGINTERNINLINE PyObject* SWIG_From_size_t(size_t value) -{ + +SWIGINTERNINLINE PyObject * +SWIG_From_size_t (size_t value) +{ #ifdef SWIG_LONG_LONG_AVAILABLE - if (sizeof(size_t) <= sizeof(unsigned long)) { + if (sizeof(size_t) <= sizeof(unsigned long)) { #endif - return SWIG_From_unsigned_SS_long(static_cast(value)); + return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value)); #ifdef SWIG_LONG_LONG_AVAILABLE - } - else { - /* assume sizeof(size_t) <= sizeof(unsigned long long) */ - return SWIG_From_unsigned_SS_long_SS_long(static_cast(value)); - } + } else { + /* assume sizeof(size_t) <= sizeof(unsigned long long) */ + return SWIG_From_unsigned_SS_long_SS_long (static_cast< unsigned long long >(value)); + } #endif } + + /* --------------------------------------------------- * C++ director class methods * --------------------------------------------------- */ #include "zt_wrap.h" -SwigDirector_PythonDirectorCallbackClass::SwigDirector_PythonDirectorCallbackClass(PyObject* self) - : PythonDirectorCallbackClass() - , Swig::Director(self) -{ - SWIG_DIRECTOR_RGTR((PythonDirectorCallbackClass*)this, this); +SwigDirector_PythonDirectorCallbackClass::SwigDirector_PythonDirectorCallbackClass(PyObject *self): PythonDirectorCallbackClass(), Swig::Director(self) { + SWIG_DIRECTOR_RGTR((PythonDirectorCallbackClass *)this, this); } -void SwigDirector_PythonDirectorCallbackClass::on_zerotier_event(zts_event_msg_t* msg) -{ - swig::SwigVar_PyObject obj0; - obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(msg), SWIGTYPE_p_zts_event_msg_t, 0); - if (! swig_get_self()) { - Swig::DirectorException::raise( - "'self' uninitialized, maybe you forgot to call PythonDirectorCallbackClass.__init__."); - } + + + +void SwigDirector_PythonDirectorCallbackClass::on_zerotier_event(zts_event_msg_t *msg) { + swig::SwigVar_PyObject obj0; + obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(msg), SWIGTYPE_p_zts_event_msg_t, 0 ); + if (!swig_get_self()) { + Swig::DirectorException::raise("'self' uninitialized, maybe you forgot to call PythonDirectorCallbackClass.__init__."); + } #if defined(SWIG_PYTHON_DIRECTOR_VTABLE) - const size_t swig_method_index = 0; - const char* const swig_method_name = "on_zerotier_event"; - PyObject* method = swig_get_method(swig_method_index, swig_method_name); - swig::SwigVar_PyObject result = PyObject_CallFunctionObjArgs(method, (PyObject*)obj0, NULL); + const size_t swig_method_index = 0; + const char *const swig_method_name = "on_zerotier_event"; + PyObject *method = swig_get_method(swig_method_index, swig_method_name); + swig::SwigVar_PyObject result = PyObject_CallFunctionObjArgs(method ,(PyObject *)obj0, NULL); #else - swig::SwigVar_PyObject swig_method_name = SWIG_Python_str_FromChar("on_zerotier_event"); - swig::SwigVar_PyObject result = - PyObject_CallMethodObjArgs(swig_get_self(), (PyObject*)swig_method_name, (PyObject*)obj0, NULL); + swig::SwigVar_PyObject swig_method_name = SWIG_Python_str_FromChar("on_zerotier_event"); + swig::SwigVar_PyObject result = PyObject_CallMethodObjArgs(swig_get_self(), (PyObject *) swig_method_name ,(PyObject *)obj0, NULL); #endif - if (! result) { - PyObject* error = PyErr_Occurred(); - if (error) { - Swig::DirectorMethodException::raise( - "Error detected when calling 'PythonDirectorCallbackClass.on_zerotier_event'"); - } + if (!result) { + PyObject *error = PyErr_Occurred(); + if (error) { + Swig::DirectorMethodException::raise("Error detected when calling 'PythonDirectorCallbackClass.on_zerotier_event'"); } + } } -SwigDirector_PythonDirectorCallbackClass::~SwigDirector_PythonDirectorCallbackClass() -{ + +SwigDirector_PythonDirectorCallbackClass::~SwigDirector_PythonDirectorCallbackClass() { } #ifdef __cplusplus extern "C" { #endif -SWIGINTERN int Swig_var_zts_errno_set(PyObject* _val) -{ - { - int val; - int res = SWIG_AsVal_int(_val, &val); - if (! SWIG_IsOK(res)) { - SWIG_exception_fail( - SWIG_ArgError(res), - "in variable '" - "zts_errno" - "' of type '" - "int" - "'"); - } - zts_errno = static_cast(val); - } - return 0; -fail: - return 1; -} - -SWIGINTERN PyObject* Swig_var_zts_errno_get(void) -{ - PyObject* pyobj = 0; - - pyobj = SWIG_From_int(static_cast(zts_errno)); - return pyobj; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_node_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_node_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_node_id_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_node_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->node_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_node_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_node_id_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->node_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_primary_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint16_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_primary_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_primary_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_port_primary_set" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->port_primary = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_primary_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_primary_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint16_t)((arg1)->port_primary); - resultobj = SWIG_From_unsigned_SS_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_secondary_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint16_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_secondary_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_secondary_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_port_secondary_set" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->port_secondary = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_secondary_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_secondary_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint16_t)((arg1)->port_secondary); - resultobj = SWIG_From_unsigned_SS_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_tertiary_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint16_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_tertiary_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_tertiary_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_port_tertiary_set" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->port_tertiary = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_port_tertiary_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_port_tertiary_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint16_t)((arg1)->port_tertiary); - resultobj = SWIG_From_unsigned_SS_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_major_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint8_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned char val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_major_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_major_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_ver_major_set" - "', argument " - "2" - " of type '" - "uint8_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_major = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_major_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint8_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_major_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint8_t)((arg1)->ver_major); - resultobj = SWIG_From_unsigned_SS_char(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_minor_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint8_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned char val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_minor_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_minor_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_ver_minor_set" - "', argument " - "2" - " of type '" - "uint8_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_minor = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_minor_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint8_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_minor_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint8_t)((arg1)->ver_minor); - resultobj = SWIG_From_unsigned_SS_char(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_rev_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - uint8_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned char val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_rev_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_rev_set" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_node_info_t_ver_rev_set" - "', argument " - "2" - " of type '" - "uint8_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_rev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_info_t_ver_rev_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint8_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_info_t_ver_rev_get" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint8_t)((arg1)->ver_rev); - resultobj = SWIG_From_unsigned_SS_char(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_node_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_node_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_node_info_t*)new zts_node_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_node_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_node_info_t* arg1 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_node_info_t" - "', argument " - "1" - " of type '" - "zts_node_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_node_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_node_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_node_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_addr_info_t_net_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* arg1 = (zts_addr_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_info_t_net_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_addr_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_addr_info_t_net_id_set" - "', argument " - "1" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_info_t_net_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->net_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_info_t_net_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* arg1 = (zts_addr_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_addr_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_addr_info_t_net_id_get" - "', argument " - "1" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->net_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_info_t_addr_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* arg1 = (zts_addr_info_t*)0; - zts_sockaddr_storage* arg2 = (zts_sockaddr_storage*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_info_t_addr_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_addr_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_addr_info_t_addr_set" - "', argument " - "1" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_addr_info_t_addr_set" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->addr = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_info_t_addr_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* arg1 = (zts_addr_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_sockaddr_storage* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_addr_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_addr_info_t_addr_get" - "', argument " - "1" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_sockaddr_storage*)&((arg1)->addr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_addr_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_addr_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_addr_info_t*)new zts_addr_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_addr_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_addr_info_t* arg1 = (zts_addr_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_addr_info_t" - "', argument " - "1" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_addr_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_addr_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_addr_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_target_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - zts_sockaddr_storage* arg2 = (zts_sockaddr_storage*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_route_info_t_target_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_target_set" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_route_info_t_target_set" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->target = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_target_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_sockaddr_storage* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_target_get" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_sockaddr_storage*)&((arg1)->target); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_via_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - zts_sockaddr_storage* arg2 = (zts_sockaddr_storage*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_route_info_t_via_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_via_set" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_route_info_t_via_set" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->via = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_via_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_sockaddr_storage* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_via_get" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_sockaddr_storage*)&((arg1)->via); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_flags_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - uint16_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_route_info_t_flags_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_flags_set" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_route_info_t_flags_set" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_flags_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_flags_get" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint16_t)((arg1)->flags); - resultobj = SWIG_From_unsigned_SS_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_metric_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - uint16_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_route_info_t_metric_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_metric_set" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_route_info_t_metric_set" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->metric = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_info_t_metric_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_route_info_t_metric_get" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint16_t)((arg1)->metric); - resultobj = SWIG_From_unsigned_SS_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_route_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_route_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_route_info_t*)new zts_route_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_route_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_route_info_t* arg1 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_route_info_t" - "', argument " - "1" - " of type '" - "zts_route_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_route_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_route_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_route_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_multicast_group_t_mac_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* arg1 = (zts_multicast_group_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_multicast_group_t_mac_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_multicast_group_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_multicast_group_t_mac_set" - "', argument " - "1" - " of type '" - "zts_multicast_group_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_multicast_group_t_mac_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->mac = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_multicast_group_t_mac_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* arg1 = (zts_multicast_group_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_multicast_group_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_multicast_group_t_mac_get" - "', argument " - "1" - " of type '" - "zts_multicast_group_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->mac); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_multicast_group_t_adi_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* arg1 = (zts_multicast_group_t*)0; - unsigned long arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_multicast_group_t_adi_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_multicast_group_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_multicast_group_t_adi_set" - "', argument " - "1" - " of type '" - "zts_multicast_group_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_multicast_group_t_adi_set" - "', argument " - "2" - " of type '" - "unsigned long" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->adi = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_multicast_group_t_adi_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* arg1 = (zts_multicast_group_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned long result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_multicast_group_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_multicast_group_t_adi_get" - "', argument " - "1" - " of type '" - "zts_multicast_group_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned long)((arg1)->adi); - resultobj = SWIG_From_unsigned_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_multicast_group_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_multicast_group_t", 0, 0, 0)) - SWIG_fail; - result = (zts_multicast_group_t*)new zts_multicast_group_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_multicast_group_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_multicast_group_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_multicast_group_t* arg1 = (zts_multicast_group_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_multicast_group_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_multicast_group_t" - "', argument " - "1" - " of type '" - "zts_multicast_group_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_multicast_group_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_multicast_group_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_multicast_group_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_net_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_net_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_net_id_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_net_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->net_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_net_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_net_id_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->net_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_mac_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_mac_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_mac_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_mac_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->mac = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_mac_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_mac_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->mac); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_name_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - char* arg2; - void* argp1 = 0; - int res1 = 0; - char temp2[127 + 1]; - int res2; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_name_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_name_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_AsCharArray(swig_obj[1], temp2, 127 + 1); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_net_info_t_name_set" - "', argument " - "2" - " of type '" - "char [127+1]" - "'"); - } - arg2 = reinterpret_cast(temp2); - if (arg2) - memcpy(arg1->name, arg2, 127 + 1 * sizeof(char)); - else - memset(arg1->name, 0, 127 + 1 * sizeof(char)); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_name_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_name_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char*)(char*)((arg1)->name); - { - size_t size = SWIG_strnlen(result, 127 + 1); - - resultobj = SWIG_FromCharPtrAndSize(result, size); - } - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_status_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - zts_network_status_t arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_status_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_status_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_status_set" - "', argument " - "2" - " of type '" - "zts_network_status_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->status = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_status_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_network_status_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_status_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_network_status_t)((arg1)->status); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_type_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - zts_net_info_type_t arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_type_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_type_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_type_set" - "', argument " - "2" - " of type '" - "zts_net_info_type_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_type_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_net_info_type_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_type_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_net_info_type_t)((arg1)->type); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_mtu_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - unsigned int arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_mtu_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_mtu_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_mtu_set" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->mtu = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_mtu_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_mtu_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned int)((arg1)->mtu); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_dhcp_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_dhcp_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_dhcp_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_dhcp_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->dhcp = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_dhcp_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_dhcp_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->dhcp); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_bridge_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_bridge_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_bridge_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_bridge_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->bridge = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_bridge_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_bridge_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->bridge); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_broadcast_enabled_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_broadcast_enabled_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_broadcast_enabled_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_broadcast_enabled_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->broadcast_enabled = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_broadcast_enabled_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_broadcast_enabled_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->broadcast_enabled); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_port_error_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_port_error_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_port_error_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_port_error_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->port_error = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_port_error_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_port_error_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->port_error); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_netconf_rev_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - unsigned long arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_netconf_rev_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_netconf_rev_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_netconf_rev_set" - "', argument " - "2" - " of type '" - "unsigned long" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->netconf_rev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_netconf_rev_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned long result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_netconf_rev_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned long)((arg1)->netconf_rev); - resultobj = SWIG_From_unsigned_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_assigned_addr_count_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - unsigned int arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_assigned_addr_count_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_assigned_addr_count_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_assigned_addr_count_set" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->assigned_addr_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_assigned_addr_count_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_assigned_addr_count_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned int)((arg1)->assigned_addr_count); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_assigned_addrs_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - zts_sockaddr_storage* arg2; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_assigned_addrs_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_assigned_addrs_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_net_info_t_assigned_addrs_set" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage [16]" - "'"); - } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)16; ++ii) - *(zts_sockaddr_storage*)&arg1->assigned_addrs[ii] = *((zts_sockaddr_storage*)arg2 + ii); - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "assigned_addrs" - "' of type '" - "zts_sockaddr_storage [16]" - "'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_assigned_addrs_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_sockaddr_storage* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_assigned_addrs_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_sockaddr_storage*)(zts_sockaddr_storage*)((arg1)->assigned_addrs); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_route_count_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - unsigned int arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_route_count_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_route_count_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_route_count_set" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->route_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_route_count_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_route_count_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned int)((arg1)->route_count); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_routes_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - zts_route_info_t* arg2; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_routes_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_routes_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_route_info_t, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_net_info_t_routes_set" - "', argument " - "2" - " of type '" - "zts_route_info_t [32]" - "'"); - } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) - *(zts_route_info_t*)&arg1->routes[ii] = *((zts_route_info_t*)arg2 + ii); - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "routes" - "' of type '" - "zts_route_info_t [32]" - "'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_routes_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_route_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_routes_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_route_info_t*)(zts_route_info_t*)((arg1)->routes); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_multicast_sub_count_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - unsigned int arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_info_t_multicast_sub_count_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_multicast_sub_count_set" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_info_t_multicast_sub_count_set" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->multicast_sub_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_info_t_multicast_sub_count_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_net_info_t_multicast_sub_count_get" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned int)((arg1)->multicast_sub_count); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_net_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_net_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_net_info_t*)new zts_net_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_net_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_net_info_t* arg1 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_net_info_t" - "', argument " - "1" - " of type '" - "zts_net_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_net_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_net_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_net_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_path_t_address_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - zts_sockaddr_storage* arg2 = (zts_sockaddr_storage*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_address_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_address_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_path_t_address_set" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->address = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_address_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_sockaddr_storage* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_address_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_sockaddr_storage*)&((arg1)->address); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_last_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_last_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_last_tx_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_last_tx_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->last_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_last_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_last_tx_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->last_tx); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_last_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_last_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_last_rx_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_last_rx_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->last_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_last_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_last_rx_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->last_rx); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_trusted_path_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_trusted_path_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_trusted_path_id_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_trusted_path_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->trusted_path_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_trusted_path_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_trusted_path_id_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->trusted_path_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_latency_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_latency_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_latency_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_latency_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->latency = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_latency_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_latency_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->latency); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_0_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_0_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_0_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_0_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_0 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_0_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_0_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_0); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_1_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_1_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_1_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_1_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_1 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_1_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_1_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_1); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_2_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_2_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_2_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_2_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_2 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_2_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_2_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_2); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_3_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_3_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_3_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_3_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_3 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_3_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_3_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_3); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_4_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_4_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_4_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_4_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_4 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_4_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_4_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_4); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_5_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_5_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_5_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_5_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_5 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_5_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_5_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->unused_5); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_6_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_6_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_6_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_6_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_6 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_6_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_6_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->unused_6); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_7_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - float arg2; - void* argp1 = 0; - int res1 = 0; - float val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_unused_7_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_7_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_unused_7_set" - "', argument " - "2" - " of type '" - "float" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_7 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_unused_7_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - float result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_unused_7_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (float)((arg1)->unused_7); - resultobj = SWIG_From_float(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_ifname_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - char* arg2 = (char*)0; - void* argp1 = 0; - int res1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_ifname_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_ifname_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_path_t_ifname_set" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - if (arg1->ifname) - delete[] arg1->ifname; +SWIGINTERN int Swig_var_zts_errno_set(PyObject *_val) { + { + int val; + int res = SWIG_AsVal_int(_val, &val); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""zts_errno""' of type '""int""'"); + } + zts_errno = static_cast< int >(val); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var_zts_errno_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_From_int(static_cast< int >(zts_errno)); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_node_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_node_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_node_id_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_node_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->node_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_node_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_node_id_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint64_t) ((arg1)->node_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_primary_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_primary_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_primary_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_port_primary_set" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + if (arg1) (arg1)->port_primary = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_primary_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_primary_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint16_t) ((arg1)->port_primary); + resultobj = SWIG_From_unsigned_SS_short(static_cast< unsigned short >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_secondary_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_secondary_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_secondary_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_port_secondary_set" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + if (arg1) (arg1)->port_secondary = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_secondary_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_secondary_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint16_t) ((arg1)->port_secondary); + resultobj = SWIG_From_unsigned_SS_short(static_cast< unsigned short >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_tertiary_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_port_tertiary_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_tertiary_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_port_tertiary_set" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + if (arg1) (arg1)->port_tertiary = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_port_tertiary_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_port_tertiary_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint16_t) ((arg1)->port_tertiary); + resultobj = SWIG_From_unsigned_SS_short(static_cast< unsigned short >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_major_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned char val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_major_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_major_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_ver_major_set" "', argument " "2"" of type '" "uint8_t""'"); + } + arg2 = static_cast< uint8_t >(val2); + if (arg1) (arg1)->ver_major = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_major_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint8_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_major_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint8_t) ((arg1)->ver_major); + resultobj = SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_minor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned char val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_minor_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_minor_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_ver_minor_set" "', argument " "2"" of type '" "uint8_t""'"); + } + arg2 = static_cast< uint8_t >(val2); + if (arg1) (arg1)->ver_minor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_minor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint8_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_minor_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint8_t) ((arg1)->ver_minor); + resultobj = SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_rev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned char val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_info_t_ver_rev_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_rev_set" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_node_info_t_ver_rev_set" "', argument " "2"" of type '" "uint8_t""'"); + } + arg2 = static_cast< uint8_t >(val2); + if (arg1) (arg1)->ver_rev = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_info_t_ver_rev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint8_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_info_t_ver_rev_get" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + result = (uint8_t) ((arg1)->ver_rev); + resultobj = SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_node_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_node_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_node_info_t *)new zts_node_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_node_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_node_info_t *arg1 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_node_info_t" "', argument " "1"" of type '" "zts_node_info_t *""'"); + } + arg1 = reinterpret_cast< zts_node_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_node_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_node_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_node_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_addr_info_t_net_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *arg1 = (zts_addr_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_info_t_net_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_addr_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_addr_info_t_net_id_set" "', argument " "1"" of type '" "zts_addr_info_t *""'"); + } + arg1 = reinterpret_cast< zts_addr_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_info_t_net_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->net_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_info_t_net_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *arg1 = (zts_addr_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_addr_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_addr_info_t_net_id_get" "', argument " "1"" of type '" "zts_addr_info_t *""'"); + } + arg1 = reinterpret_cast< zts_addr_info_t * >(argp1); + result = (uint64_t) ((arg1)->net_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_info_t_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *arg1 = (zts_addr_info_t *) 0 ; + zts_sockaddr_storage *arg2 = (zts_sockaddr_storage *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_info_t_addr_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_addr_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_addr_info_t_addr_set" "', argument " "1"" of type '" "zts_addr_info_t *""'"); + } + arg1 = reinterpret_cast< zts_addr_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_addr_info_t_addr_set" "', argument " "2"" of type '" "zts_sockaddr_storage *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + if (arg1) (arg1)->addr = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_info_t_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *arg1 = (zts_addr_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_sockaddr_storage *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_addr_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_addr_info_t_addr_get" "', argument " "1"" of type '" "zts_addr_info_t *""'"); + } + arg1 = reinterpret_cast< zts_addr_info_t * >(argp1); + result = (zts_sockaddr_storage *)& ((arg1)->addr); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_addr_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_addr_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_addr_info_t *)new zts_addr_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_addr_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_addr_info_t *arg1 = (zts_addr_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_addr_info_t" "', argument " "1"" of type '" "zts_addr_info_t *""'"); + } + arg1 = reinterpret_cast< zts_addr_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_addr_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_addr_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_addr_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_route_info_t_target_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + zts_sockaddr_storage *arg2 = (zts_sockaddr_storage *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_route_info_t_target_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_target_set" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_route_info_t_target_set" "', argument " "2"" of type '" "zts_sockaddr_storage *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + if (arg1) (arg1)->target = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_target_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_sockaddr_storage *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_target_get" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + result = (zts_sockaddr_storage *)& ((arg1)->target); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_via_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + zts_sockaddr_storage *arg2 = (zts_sockaddr_storage *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_route_info_t_via_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_via_set" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_route_info_t_via_set" "', argument " "2"" of type '" "zts_sockaddr_storage *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + if (arg1) (arg1)->via = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_via_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_sockaddr_storage *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_via_get" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + result = (zts_sockaddr_storage *)& ((arg1)->via); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_route_info_t_flags_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_flags_set" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_route_info_t_flags_set" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + if (arg1) (arg1)->flags = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_flags_get" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + result = (uint16_t) ((arg1)->flags); + resultobj = SWIG_From_unsigned_SS_short(static_cast< unsigned short >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_metric_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + uint16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_route_info_t_metric_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_metric_set" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_route_info_t_metric_set" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + if (arg1) (arg1)->metric = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_info_t_metric_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_route_info_t_metric_get" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + result = (uint16_t) ((arg1)->metric); + resultobj = SWIG_From_unsigned_SS_short(static_cast< unsigned short >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_route_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_route_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_route_info_t *)new zts_route_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_route_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_route_info_t *arg1 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_route_info_t" "', argument " "1"" of type '" "zts_route_info_t *""'"); + } + arg1 = reinterpret_cast< zts_route_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_route_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_route_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_route_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_multicast_group_t_mac_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *arg1 = (zts_multicast_group_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_multicast_group_t_mac_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_multicast_group_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_multicast_group_t_mac_set" "', argument " "1"" of type '" "zts_multicast_group_t *""'"); + } + arg1 = reinterpret_cast< zts_multicast_group_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_multicast_group_t_mac_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->mac = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_multicast_group_t_mac_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *arg1 = (zts_multicast_group_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_multicast_group_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_multicast_group_t_mac_get" "', argument " "1"" of type '" "zts_multicast_group_t *""'"); + } + arg1 = reinterpret_cast< zts_multicast_group_t * >(argp1); + result = (uint64_t) ((arg1)->mac); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_multicast_group_t_adi_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *arg1 = (zts_multicast_group_t *) 0 ; + unsigned long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_multicast_group_t_adi_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_multicast_group_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_multicast_group_t_adi_set" "', argument " "1"" of type '" "zts_multicast_group_t *""'"); + } + arg1 = reinterpret_cast< zts_multicast_group_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_multicast_group_t_adi_set" "', argument " "2"" of type '" "unsigned long""'"); + } + arg2 = static_cast< unsigned long >(val2); + if (arg1) (arg1)->adi = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_multicast_group_t_adi_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *arg1 = (zts_multicast_group_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned long result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_multicast_group_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_multicast_group_t_adi_get" "', argument " "1"" of type '" "zts_multicast_group_t *""'"); + } + arg1 = reinterpret_cast< zts_multicast_group_t * >(argp1); + result = (unsigned long) ((arg1)->adi); + resultobj = SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_multicast_group_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_multicast_group_t", 0, 0, 0)) SWIG_fail; + result = (zts_multicast_group_t *)new zts_multicast_group_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_multicast_group_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_multicast_group_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_multicast_group_t *arg1 = (zts_multicast_group_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_multicast_group_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_multicast_group_t" "', argument " "1"" of type '" "zts_multicast_group_t *""'"); + } + arg1 = reinterpret_cast< zts_multicast_group_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_multicast_group_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_multicast_group_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_multicast_group_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_net_info_t_net_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_net_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_net_id_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_net_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->net_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_net_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_net_id_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (uint64_t) ((arg1)->net_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_mac_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_mac_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_mac_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_mac_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->mac = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_mac_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_mac_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (uint64_t) ((arg1)->mac); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + char *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + char temp2[127+1] ; + int res2 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_name_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_name_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + res2 = SWIG_AsCharArray(swig_obj[1], temp2, 127+1); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_net_info_t_name_set" "', argument " "2"" of type '" "char [127+1]""'"); + } + arg2 = reinterpret_cast< char * >(temp2); + if (arg2) memcpy(arg1->name,arg2,127+1*sizeof(char)); + else memset(arg1->name,0,127+1*sizeof(char)); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_name_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (char *)(char *) ((arg1)->name); + { + size_t size = SWIG_strnlen(result, 127+1); + + + + resultobj = SWIG_FromCharPtrAndSize(result, size); + } + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_status_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + zts_network_status_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_status_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_status_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_status_set" "', argument " "2"" of type '" "zts_network_status_t""'"); + } + arg2 = static_cast< zts_network_status_t >(val2); + if (arg1) (arg1)->status = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_status_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_network_status_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_status_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (zts_network_status_t) ((arg1)->status); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + zts_net_info_type_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_type_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_type_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_type_set" "', argument " "2"" of type '" "zts_net_info_type_t""'"); + } + arg2 = static_cast< zts_net_info_type_t >(val2); + if (arg1) (arg1)->type = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_net_info_type_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_type_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (zts_net_info_type_t) ((arg1)->type); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_mtu_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_mtu_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_mtu_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_mtu_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + if (arg1) (arg1)->mtu = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_mtu_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_mtu_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (unsigned int) ((arg1)->mtu); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_dhcp_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_dhcp_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_dhcp_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_dhcp_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->dhcp = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_dhcp_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_dhcp_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (int) ((arg1)->dhcp); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_bridge_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_bridge_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_bridge_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_bridge_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->bridge = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_bridge_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_bridge_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (int) ((arg1)->bridge); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_broadcast_enabled_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_broadcast_enabled_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_broadcast_enabled_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_broadcast_enabled_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->broadcast_enabled = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_broadcast_enabled_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_broadcast_enabled_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (int) ((arg1)->broadcast_enabled); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_port_error_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_port_error_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_port_error_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_port_error_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->port_error = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_port_error_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_port_error_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (int) ((arg1)->port_error); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_netconf_rev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + unsigned long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_netconf_rev_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_netconf_rev_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_netconf_rev_set" "', argument " "2"" of type '" "unsigned long""'"); + } + arg2 = static_cast< unsigned long >(val2); + if (arg1) (arg1)->netconf_rev = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_netconf_rev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned long result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_netconf_rev_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (unsigned long) ((arg1)->netconf_rev); + resultobj = SWIG_From_unsigned_SS_long(static_cast< unsigned long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_assigned_addr_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_assigned_addr_count_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_assigned_addr_count_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_assigned_addr_count_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + if (arg1) (arg1)->assigned_addr_count = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_assigned_addr_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_assigned_addr_count_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (unsigned int) ((arg1)->assigned_addr_count); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_assigned_addrs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + zts_sockaddr_storage *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_assigned_addrs_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_assigned_addrs_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_net_info_t_assigned_addrs_set" "', argument " "2"" of type '" "zts_sockaddr_storage [16]""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + { if (arg2) { - size_t size = strlen(reinterpret_cast(arg2)) + 1; - arg1->ifname = (char*)reinterpret_cast( - memcpy(new char[size], reinterpret_cast(arg2), sizeof(char) * (size))); - } - else { - arg1->ifname = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_ifname_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_ifname_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char*)((arg1)->ifname); - resultobj = SWIG_FromCharPtr((const char*)result); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_expired_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_expired_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_expired_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_expired_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->expired = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_expired_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_expired_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->expired); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_preferred_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_path_t_preferred_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_preferred_set" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_path_t_preferred_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->preferred = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_path_t_preferred_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_path_t_preferred_get" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->preferred); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_path_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_path_t", 0, 0, 0)) - SWIG_fail; - result = (zts_path_t*)new zts_path_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_path_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_path_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_path_t* arg1 = (zts_path_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_path_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_path_t" - "', argument " - "1" - " of type '" - "zts_path_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_path_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_path_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_path_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_peer_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_peer_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_peer_id_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_peer_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->peer_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_peer_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_peer_id_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->peer_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_major_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_major_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_major_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_ver_major_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_major = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_major_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_major_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->ver_major); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_minor_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_minor_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_minor_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_ver_minor_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_minor = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_minor_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_minor_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->ver_minor); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_rev_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_rev_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_rev_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_ver_rev_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ver_rev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_ver_rev_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_ver_rev_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->ver_rev); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_latency_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_latency_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_latency_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_latency_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->latency = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_latency_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_latency_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->latency); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_role_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - zts_peer_role_t arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_role_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_role_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_role_set" - "', argument " - "2" - " of type '" - "zts_peer_role_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->role = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_role_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_peer_role_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_role_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_peer_role_t)((arg1)->role); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_path_count_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - unsigned int arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_path_count_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_path_count_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_path_count_set" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->path_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_path_count_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - unsigned int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_path_count_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (unsigned int)((arg1)->path_count); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_unused_0_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_unused_0_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_unused_0_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_peer_info_t_unused_0_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->unused_0 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_unused_0_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_unused_0_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->unused_0); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_paths_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - zts_path_t* arg2; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_peer_info_t_paths_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_paths_set" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_path_t, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_peer_info_t_paths_set" - "', argument " - "2" - " of type '" - "zts_path_t [16]" - "'"); - } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)16; ++ii) - *(zts_path_t*)&arg1->paths[ii] = *((zts_path_t*)arg2 + ii); - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "paths" - "' of type '" - "zts_path_t [16]" - "'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_peer_info_t_paths_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_path_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_peer_info_t_paths_get" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_path_t*)(zts_path_t*)((arg1)->paths); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_path_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_peer_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_peer_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_peer_info_t*)new zts_peer_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_peer_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_peer_info_t* arg1 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_peer_info_t" - "', argument " - "1" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_peer_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_peer_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_peer_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_root_set_t_public_id_str_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* arg1 = (zts_root_set_t*)0; - char** arg2; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_root_set_t_public_id_str_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_root_set_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_root_set_t_public_id_str_set" - "', argument " - "1" - " of type '" - "zts_root_set_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_p_char, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_root_set_t_public_id_str_set" - "', argument " - "2" - " of type '" - "char *[16]" - "'"); - } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)16; ++ii) - *(char**)&arg1->public_id_str[ii] = *((char**)arg2 + ii); - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "public_id_str" - "' of type '" - "char *[16]" - "'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_root_set_t_public_id_str_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* arg1 = (zts_root_set_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char** result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_root_set_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_root_set_t_public_id_str_get" - "', argument " - "1" - " of type '" - "zts_root_set_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char**)(char**)((arg1)->public_id_str); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_root_set_t_endpoint_ip_str_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* arg1 = (zts_root_set_t*)0; - char*(*arg2)[32]; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_root_set_t_endpoint_ip_str_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_root_set_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_root_set_t_endpoint_ip_str_set" - "', argument " - "1" - " of type '" - "zts_root_set_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_a_32__p_char, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_root_set_t_endpoint_ip_str_set" - "', argument " - "2" - " of type '" - "char *[16][32]" - "'"); - } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)16; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)32; ++jj) - arg1->endpoint_ip_str[ii][jj] = arg2[ii][jj]; - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "endpoint_ip_str" - "' of type '" - "char *[16][32]" - "'"); - } - } - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "endpoint_ip_str" - "' of type '" - "char *[16][32]" - "'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_root_set_t_endpoint_ip_str_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* arg1 = (zts_root_set_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char*(*result)[32] = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_root_set_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_root_set_t_endpoint_ip_str_get" - "', argument " - "1" - " of type '" - "zts_root_set_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char*(*)[32])(char*(*)[32])((arg1)->endpoint_ip_str); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_32__p_char, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_root_set_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_root_set_t", 0, 0, 0)) - SWIG_fail; - result = (zts_root_set_t*)new zts_root_set_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_root_set_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_root_set_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_root_set_t* arg1 = (zts_root_set_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_root_set_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_root_set_t" - "', argument " - "1" - " of type '" - "zts_root_set_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_root_set_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_root_set_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_root_set_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_net_id_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_netif_info_t_net_id_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_net_id_set" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_netif_info_t_net_id_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->net_id = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_net_id_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_net_id_get" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->net_id); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_mac_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - uint64_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_netif_info_t_mac_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_mac_set" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_netif_info_t_mac_set" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->mac = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_mac_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_mac_get" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint64_t)((arg1)->mac); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_mtu_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_netif_info_t_mtu_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_mtu_set" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_netif_info_t_mtu_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->mtu = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_netif_info_t_mtu_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_netif_info_t_mtu_get" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->mtu); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_netif_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_netif_info_t", 0, 0, 0)) - SWIG_fail; - result = (zts_netif_info_t*)new zts_netif_info_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_netif_info_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_netif_info_t* arg1 = (zts_netif_info_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_netif_info_t" - "', argument " - "1" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_netif_info_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_netif_info_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_netif_info_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_event_code_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - int16_t arg2; - void* argp1 = 0; - int res1 = 0; - short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_event_code_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_event_code_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_event_msg_t_event_code_set" - "', argument " - "2" - " of type '" - "int16_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->event_code = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_event_code_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int16_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_event_code_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int16_t)((arg1)->event_code); - resultobj = SWIG_From_short(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_node_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_node_info_t* arg2 = (zts_node_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_node_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_node_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_node_set" - "', argument " - "2" - " of type '" - "zts_node_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->node = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_node_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_node_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_node_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_node_info_t*)((arg1)->node); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_node_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_network_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_net_info_t* arg2 = (zts_net_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_network_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_network_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_network_set" - "', argument " - "2" - " of type '" - "zts_net_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->network = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_network_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_net_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_network_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_net_info_t*)((arg1)->network); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_net_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_netif_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_netif_info_t* arg2 = (zts_netif_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_netif_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_netif_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_netif_set" - "', argument " - "2" - " of type '" - "zts_netif_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->netif = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_netif_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_netif_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_netif_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_netif_info_t*)((arg1)->netif); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_netif_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_route_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_route_info_t* arg2 = (zts_route_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_route_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_route_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_route_set" - "', argument " - "2" - " of type '" - "zts_route_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->route = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_route_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_route_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_route_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_route_info_t*)((arg1)->route); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_peer_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_peer_info_t* arg2 = (zts_peer_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_peer_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_peer_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_peer_set" - "', argument " - "2" - " of type '" - "zts_peer_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->peer = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_peer_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_peer_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_peer_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_peer_info_t*)((arg1)->peer); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_peer_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_addr_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - zts_addr_info_t* arg2 = (zts_addr_info_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_addr_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_addr_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_addr_set" - "', argument " - "2" - " of type '" - "zts_addr_info_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->addr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_addr_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - zts_addr_info_t* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_addr_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (zts_addr_info_t*)((arg1)->addr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_addr_info_t, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_cache_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* arg2 = (void*)0; - void* argp1 = 0; - int res1 = 0; - int res2; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_cache_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_cache_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_event_msg_t_cache_set" - "', argument " - "2" - " of type '" - "void *" - "'"); - } - if (arg1) - (arg1)->cache = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_cache_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - void* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_cache_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (void*)((arg1)->cache); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_len_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_event_msg_t_len_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_len_set" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_event_msg_t_len_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->len = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_event_msg_t_len_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_event_msg_t_len_get" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->len); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_event_msg_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_event_msg_t", 0, 0, 0)) - SWIG_fail; - result = (zts_event_msg_t*)new zts_event_msg_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_event_msg_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_event_msg_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_event_msg_t* arg1 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_event_msg_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_event_msg_t" - "', argument " - "1" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_event_msg_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_event_msg_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_event_msg_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_PythonDirectorCallbackClass_on_zerotier_event(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - PythonDirectorCallbackClass* arg1 = (PythonDirectorCallbackClass*)0; - zts_event_msg_t* arg2 = (zts_event_msg_t*)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - Swig::Director* director = 0; - bool upcall = false; - - if (! SWIG_Python_UnpackTuple(args, "PythonDirectorCallbackClass_on_zerotier_event", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "PythonDirectorCallbackClass_on_zerotier_event" - "', argument " - "1" - " of type '" - "PythonDirectorCallbackClass *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_event_msg_t, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "PythonDirectorCallbackClass_on_zerotier_event" - "', argument " - "2" - " of type '" - "zts_event_msg_t *" - "'"); - } - arg2 = reinterpret_cast(argp2); - director = SWIG_DIRECTOR_CAST(arg1); - upcall = (director && (director->swig_get_self() == swig_obj[0])); - try { - if (upcall) { - (arg1)->PythonDirectorCallbackClass::on_zerotier_event(arg2); - } - else { - (arg1)->on_zerotier_event(arg2); - } - } - catch (Swig::DirectorException&) { - SWIG_fail; - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_PythonDirectorCallbackClass(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - PythonDirectorCallbackClass* arg1 = (PythonDirectorCallbackClass*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_PythonDirectorCallbackClass" - "', argument " - "1" - " of type '" - "PythonDirectorCallbackClass *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_PythonDirectorCallbackClass(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - PyObject* arg1 = (PyObject*)0; - PyObject* swig_obj[1]; - PythonDirectorCallbackClass* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - arg1 = swig_obj[0]; - if (arg1 != Py_None) { - /* subclassed */ - result = (PythonDirectorCallbackClass*)new SwigDirector_PythonDirectorCallbackClass(arg1); - } - else { - result = (PythonDirectorCallbackClass*)new PythonDirectorCallbackClass(); - } - - resultobj = - SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_disown_PythonDirectorCallbackClass(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - PythonDirectorCallbackClass* arg1 = (PythonDirectorCallbackClass*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "disown_PythonDirectorCallbackClass" - "', argument " - "1" - " of type '" - "PythonDirectorCallbackClass *" - "'"); - } - arg1 = reinterpret_cast(argp1); - { - Swig::Director* director = SWIG_DIRECTOR_CAST(arg1); - if (director) - director->swig_disown(); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* PythonDirectorCallbackClass_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* PythonDirectorCallbackClass_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN int Swig_var__userEventCallback_set(PyObject* _val) -{ - { - void* argp = 0; - int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_PythonDirectorCallbackClass, 0); - if (! SWIG_IsOK(res)) { - SWIG_exception_fail( - SWIG_ArgError(res), - "in variable '" - "_userEventCallback" - "' of type '" - "PythonDirectorCallbackClass *" - "'"); - } - _userEventCallback = reinterpret_cast(argp); - } - return 0; -fail: - return 1; -} - -SWIGINTERN PyObject* Swig_var__userEventCallback_get(void) -{ - PyObject* pyobj = 0; - - pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(_userEventCallback), SWIGTYPE_p_PythonDirectorCallbackClass, 0); - return pyobj; -} - -SWIGINTERN PyObject* _wrap_zts_py_bind(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - PyObject* arg4 = (PyObject*)0; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_bind", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_bind" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_py_bind" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_py_bind" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - arg4 = swig_obj[3]; - result = (int)zts_py_bind(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_connect(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - PyObject* arg4 = (PyObject*)0; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_connect", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_connect" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_py_connect" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_py_connect" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - arg4 = swig_obj[3]; - result = (int)zts_py_connect(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_accept(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - PyObject* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_accept" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (PyObject*)zts_py_accept(arg1); - resultobj = result; - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_listen(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_listen", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_listen" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_py_listen" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_py_listen(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_recv(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - PyObject* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_recv", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_recv" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_py_recv" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_py_recv" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (PyObject*)zts_py_recv(arg1, arg2, arg3); - resultobj = result; - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_send(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - PyObject* arg2 = (PyObject*)0; - int arg3; - int val1; - int ecode1 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_send", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_send" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - arg2 = swig_obj[1]; - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_py_send" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_py_send(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_close(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_close" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_py_close(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_setblocking(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_py_setblocking", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_setblocking" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_py_setblocking" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_py_setblocking(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_py_getblocking(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_py_getblocking" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_py_getblocking(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_id_new(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int* arg2 = (unsigned int*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_id_new", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_id_new" - "', argument " - "1" - " of type '" - "char *" - "'"); - } - arg1 = reinterpret_cast(buf1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_id_new" - "', argument " - "2" - " of type '" - "unsigned int *" - "'"); - } - arg2 = reinterpret_cast(argp2); - result = (int)zts_id_new(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_id_pair_is_valid(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int arg2; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_id_pair_is_valid", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_id_pair_is_valid" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_id_pair_is_valid" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_id_pair_is_valid((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_from_storage(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_init_from_storage" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - result = (int)zts_init_from_storage((char const*)arg1); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_from_memory(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int arg2; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_init_from_memory", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_init_from_memory" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_init_from_memory" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_init_from_memory((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_set_event_handler(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - PythonDirectorCallbackClass* arg1 = (PythonDirectorCallbackClass*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_init_set_event_handler" - "', argument " - "1" - " of type '" - "PythonDirectorCallbackClass *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)zts_init_set_event_handler(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_blacklist_if(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int arg2; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_init_blacklist_if", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_init_blacklist_if" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_init_blacklist_if" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_init_blacklist_if((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_set_roots(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - void* arg1 = (void*)0; - unsigned int arg2; - int res1; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_init_set_roots", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], SWIG_as_voidptrptr(&arg1), 0, 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_init_set_roots" - "', argument " - "1" - " of type '" - "void const *" - "'"); - } - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_init_set_roots" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_init_set_roots((void const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_set_port(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned short arg1; - unsigned short val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_short(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_init_set_port" - "', argument " - "1" - " of type '" - "unsigned short" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_init_set_port(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_allow_net_cache(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned int arg1; - unsigned int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_init_allow_net_cache" - "', argument " - "1" - " of type '" - "unsigned int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_init_allow_net_cache(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_allow_peer_cache(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned int arg1; - unsigned int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_init_allow_peer_cache" - "', argument " - "1" - " of type '" - "unsigned int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_init_allow_peer_cache(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_allow_roots_cache(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned int arg1; - unsigned int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_init_allow_roots_cache" - "', argument " - "1" - " of type '" - "unsigned int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_init_allow_roots_cache(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_init_allow_id_cache(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned int arg1; - unsigned int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_init_allow_id_cache" - "', argument " - "1" - " of type '" - "unsigned int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_init_allow_id_cache(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_is_assigned(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_is_assigned", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_is_assigned" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_is_assigned" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_addr_is_assigned(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - zts_sockaddr_storage* arg3 = (zts_sockaddr_storage*)0; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_get", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_get" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_get" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_get" - "', argument " - "3" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_addr_get(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_get_str(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - char* arg3 = (char*)0; - unsigned int arg4; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_get_str", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_get_str" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_get_str" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_get_str" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_addr_get_str" - "', argument " - "4" - " of type '" - "unsigned int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_addr_get_str(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_get_all(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - zts_sockaddr_storage* arg2 = (zts_sockaddr_storage*)0; - unsigned int* arg3 = (unsigned int*)0; - unsigned long long val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_get_all", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_get_all" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_addr_get_all" - "', argument " - "2" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_get_all" - "', argument " - "3" - " of type '" - "unsigned int *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_addr_get_all(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_compute_6plane(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - uint64_t arg2; - zts_sockaddr_storage* arg3 = (zts_sockaddr_storage*)0; - unsigned long long val1; - int ecode1 = 0; - unsigned long long val2; - int ecode2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_compute_6plane", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_compute_6plane" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_compute_6plane" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_compute_6plane" - "', argument " - "3" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_addr_compute_6plane(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_compute_rfc4193(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - uint64_t arg2; - zts_sockaddr_storage* arg3 = (zts_sockaddr_storage*)0; - unsigned long long val1; - int ecode1 = 0; - unsigned long long val2; - int ecode2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_compute_rfc4193", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_compute_rfc4193" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_compute_rfc4193" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_zts_sockaddr_storage, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_compute_rfc4193" - "', argument " - "3" - " of type '" - "zts_sockaddr_storage *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_addr_compute_rfc4193(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_compute_rfc4193_str(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - uint64_t arg2; - char* arg3 = (char*)0; - unsigned int arg4; - unsigned long long val1; - int ecode1 = 0; - unsigned long long val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_compute_rfc4193_str", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_compute_rfc4193_str" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_compute_rfc4193_str" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_compute_rfc4193_str" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_addr_compute_rfc4193_str" - "', argument " - "4" - " of type '" - "unsigned int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_addr_compute_rfc4193_str(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_addr_compute_6plane_str(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - uint64_t arg2; - char* arg3 = (char*)0; - unsigned int arg4; - unsigned long long val1; - int ecode1 = 0; - unsigned long long val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_addr_compute_6plane_str", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_addr_compute_6plane_str" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_addr_compute_6plane_str" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_addr_compute_6plane_str" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_addr_compute_6plane_str" - "', argument " - "4" - " of type '" - "unsigned int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_addr_compute_6plane_str(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_compute_adhoc_id(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint16_t arg1; - uint16_t arg2; - unsigned short val1; - int ecode1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - uint64_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_compute_adhoc_id", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_short(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_compute_adhoc_id" - "', argument " - "1" - " of type '" - "uint16_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_net_compute_adhoc_id" - "', argument " - "2" - " of type '" - "uint16_t" - "'"); - } - arg2 = static_cast(val2); - result = (uint64_t)zts_net_compute_adhoc_id(arg1, arg2); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_join(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_join" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_join(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_leave(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_leave" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_leave(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_transport_is_ready(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_transport_is_ready" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_transport_is_ready(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_mac(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - uint64_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_mac" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (uint64_t)zts_net_get_mac(arg1); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_mac_str(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - char* arg2 = (char*)0; - unsigned int arg3; - unsigned long long val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - unsigned int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_get_mac_str", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_mac_str" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_net_get_mac_str" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_net_get_mac_str" - "', argument " - "3" - " of type '" - "unsigned int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_net_get_mac_str(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_broadcast(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_broadcast" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_get_broadcast(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_mtu(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_mtu" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_get_mtu(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_name(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - char* arg2 = (char*)0; - unsigned int arg3; - unsigned long long val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - unsigned int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_net_get_name", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_name" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_net_get_name" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_net_get_name" - "', argument " - "3" - " of type '" - "unsigned int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_net_get_name(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_status(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_status" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_get_status(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_net_get_type(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_net_get_type" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_net_get_type(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_route_is_assigned(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_route_is_assigned", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_route_is_assigned" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_route_is_assigned" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_route_is_assigned(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_start(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_start", 0, 0, 0)) - SWIG_fail; - result = (int)zts_node_start(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_is_online(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_is_online", 0, 0, 0)) - SWIG_fail; - result = (int)zts_node_is_online(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_get_id(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_get_id", 0, 0, 0)) - SWIG_fail; - result = (uint64_t)zts_node_get_id(); - resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_get_id_pair(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int* arg2 = (unsigned int*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_get_id_pair", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_node_get_id_pair" - "', argument " - "1" - " of type '" - "char *" - "'"); - } - arg1 = reinterpret_cast(buf1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_node_get_id_pair" - "', argument " - "2" - " of type '" - "unsigned int *" - "'"); - } - arg2 = reinterpret_cast(argp2); - result = (int)zts_node_get_id_pair(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_get_port(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_get_port", 0, 0, 0)) - SWIG_fail; - result = (int)zts_node_get_port(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_stop(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_stop", 0, 0, 0)) - SWIG_fail; - result = (int)zts_node_stop(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_node_free(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_node_free", 0, 0, 0)) - SWIG_fail; - result = (int)zts_node_free(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_moon_orbit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - uint64_t arg2; - unsigned long long val1; - int ecode1 = 0; - unsigned long long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_moon_orbit", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_moon_orbit" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_moon_orbit" - "', argument " - "2" - " of type '" - "uint64_t" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_moon_orbit(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_moon_deorbit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_moon_deorbit" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_moon_deorbit(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_link_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->link_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->link_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_link_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->link_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->link_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_link_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->link_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->link_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_link_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->link_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_link_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_link_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->link_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_etharp_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->etharp_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->etharp_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_etharp_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->etharp_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->etharp_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_etharp_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->etharp_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->etharp_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_etharp_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->etharp_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_etharp_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_etharp_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->etharp_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip4_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip4_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip4_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip4_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip4_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip4_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip4_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip4_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip4_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip4_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip4_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip4_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip4_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip4_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip6_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip6_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip6_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip6_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip6_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip6_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip6_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip6_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip6_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_ip6_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->ip6_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_ip6_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_ip6_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->ip6_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp4_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp4_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp4_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp4_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp4_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp4_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp4_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp4_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp4_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp4_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp4_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp4_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp4_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp4_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp6_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp6_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp6_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp6_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp6_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp6_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp6_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp6_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp6_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_icmp6_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->icmp6_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_icmp6_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_icmp6_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->icmp6_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_udp_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->udp_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->udp_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_udp_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->udp_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->udp_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_udp_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->udp_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->udp_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_udp_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->udp_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_udp_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_udp_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->udp_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_tcp_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tcp_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->tcp_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_tcp_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tcp_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->tcp_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_tcp_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tcp_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->tcp_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_tcp_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tcp_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_tcp_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_tcp_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->tcp_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_tx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_tx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_tx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_nd6_tx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->nd6_tx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_tx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_tx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->nd6_tx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_rx_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_rx_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_rx_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_nd6_rx_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->nd6_rx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_rx_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_rx_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->nd6_rx); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_drop_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_drop_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_drop_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_nd6_drop_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->nd6_drop = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_drop_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_drop_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->nd6_drop); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_err_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_err_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_err_set" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_stats_counter_t_nd6_err_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->nd6_err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_stats_counter_t_nd6_err_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_counter_t_nd6_err_get" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->nd6_err); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_stats_counter_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_stats_counter_t", 0, 0, 0)) - SWIG_fail; - result = (zts_stats_counter_t*)new zts_stats_counter_t(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_stats_counter_t, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_stats_counter_t(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_stats_counter_t" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_stats_counter_t_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_stats_counter_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_stats_counter_t_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_stats_get_all(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_stats_counter_t* arg1 = (zts_stats_counter_t*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_stats_counter_t, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_stats_get_all" - "', argument " - "1" - " of type '" - "zts_stats_counter_t *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)zts_stats_get_all(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_socket(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_socket", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_socket" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_socket" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_socket" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bsd_socket(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_connect(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_sockaddr* arg2 = (zts_sockaddr*)0; - zts_socklen_t arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - unsigned int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_connect", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_connect" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_connect" - "', argument " - "2" - " of type '" - "zts_sockaddr const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_connect" - "', argument " - "3" - " of type '" - "zts_socklen_t" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bsd_connect(arg1, (zts_sockaddr const*)arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_bind(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_sockaddr* arg2 = (zts_sockaddr*)0; - zts_socklen_t arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - unsigned int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_bind", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_bind" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_bind" - "', argument " - "2" - " of type '" - "zts_sockaddr const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_bind" - "', argument " - "3" - " of type '" - "zts_socklen_t" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bsd_bind(arg1, (zts_sockaddr const*)arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_listen(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_listen", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_listen" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_listen" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_bsd_listen(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_accept(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_sockaddr* arg2 = (zts_sockaddr*)0; - zts_socklen_t* arg3 = (zts_socklen_t*)0; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_accept", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_accept" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_accept" - "', argument " - "2" - " of type '" - "zts_sockaddr *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_bsd_accept" - "', argument " - "3" - " of type '" - "zts_socklen_t *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_bsd_accept(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_setsockopt(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - void* arg4 = (void*)0; - zts_socklen_t arg5; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - int res4; - unsigned int val5; - int ecode5 = 0; - PyObject* swig_obj[5]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_setsockopt", 5, 5, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_setsockopt" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_setsockopt" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_setsockopt" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - res4 = SWIG_ConvertPtr(swig_obj[3], SWIG_as_voidptrptr(&arg4), 0, 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_bsd_setsockopt" - "', argument " - "4" - " of type '" - "void const *" - "'"); - } - ecode5 = SWIG_AsVal_unsigned_SS_int(swig_obj[4], &val5); - if (! SWIG_IsOK(ecode5)) { - SWIG_exception_fail( - SWIG_ArgError(ecode5), - "in method '" - "zts_bsd_setsockopt" - "', argument " - "5" - " of type '" - "zts_socklen_t" - "'"); - } - arg5 = static_cast(val5); - result = (int)zts_bsd_setsockopt(arg1, arg2, arg3, (void const*)arg4, arg5); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_getsockopt(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - void* arg4 = (void*)0; - zts_socklen_t* arg5 = (zts_socklen_t*)0; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - int res4; - void* argp5 = 0; - int res5 = 0; - PyObject* swig_obj[5]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_getsockopt", 5, 5, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_getsockopt" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_getsockopt" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_getsockopt" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - res4 = SWIG_ConvertPtr(swig_obj[3], SWIG_as_voidptrptr(&arg4), 0, 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_bsd_getsockopt" - "', argument " - "4" - " of type '" - "void *" - "'"); - } - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_bsd_getsockopt" - "', argument " - "5" - " of type '" - "zts_socklen_t *" - "'"); - } - arg5 = reinterpret_cast(argp5); - result = (int)zts_bsd_getsockopt(arg1, arg2, arg3, arg4, arg5); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_getsockname(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_sockaddr* arg2 = (zts_sockaddr*)0; - zts_socklen_t* arg3 = (zts_socklen_t*)0; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_getsockname", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_getsockname" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_getsockname" - "', argument " - "2" - " of type '" - "zts_sockaddr *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_bsd_getsockname" - "', argument " - "3" - " of type '" - "zts_socklen_t *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_bsd_getsockname(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_getpeername(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_sockaddr* arg2 = (zts_sockaddr*)0; - zts_socklen_t* arg3 = (zts_socklen_t*)0; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - void* argp3 = 0; - int res3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_getpeername", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_getpeername" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_getpeername" - "', argument " - "2" - " of type '" - "zts_sockaddr *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_bsd_getpeername" - "', argument " - "3" - " of type '" - "zts_socklen_t *" - "'"); - } - arg3 = reinterpret_cast(argp3); - result = (int)zts_bsd_getpeername(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_close(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_close" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_bsd_close(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_timeval_tv_sec_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* arg1 = (zts_timeval*)0; - long arg2; - void* argp1 = 0; - int res1 = 0; - long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_timeval_tv_sec_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_timeval, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_timeval_tv_sec_set" - "', argument " - "1" - " of type '" - "zts_timeval *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_timeval_tv_sec_set" - "', argument " - "2" - " of type '" - "long" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tv_sec = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_timeval_tv_sec_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* arg1 = (zts_timeval*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - long result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_timeval, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_timeval_tv_sec_get" - "', argument " - "1" - " of type '" - "zts_timeval *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (long)((arg1)->tv_sec); - resultobj = SWIG_From_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_timeval_tv_usec_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* arg1 = (zts_timeval*)0; - long arg2; - void* argp1 = 0; - int res1 = 0; - long val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_timeval_tv_usec_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_timeval, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_timeval_tv_usec_set" - "', argument " - "1" - " of type '" - "zts_timeval *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_timeval_tv_usec_set" - "', argument " - "2" - " of type '" - "long" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->tv_usec = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_timeval_tv_usec_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* arg1 = (zts_timeval*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - long result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_timeval, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_timeval_tv_usec_get" - "', argument " - "1" - " of type '" - "zts_timeval *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (long)((arg1)->tv_usec); - resultobj = SWIG_From_long(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_timeval(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_timeval", 0, 0, 0)) - SWIG_fail; - result = (zts_timeval*)new zts_timeval(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_timeval, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_timeval(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_timeval* arg1 = (zts_timeval*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_timeval, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_timeval" - "', argument " - "1" - " of type '" - "zts_timeval *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_timeval_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_timeval, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_timeval_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_bsd_select(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_fd_set* arg2 = (zts_fd_set*)0; - zts_fd_set* arg3 = (zts_fd_set*)0; - zts_fd_set* arg4 = (zts_fd_set*)0; - zts_timeval* arg5 = (zts_timeval*)0; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - void* argp3 = 0; - int res3 = 0; - void* argp4 = 0; - int res4 = 0; - void* argp5 = 0; - int res5 = 0; - PyObject* swig_obj[5]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_select", 5, 5, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_select" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_fd_set, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_select" - "', argument " - "2" - " of type '" - "zts_fd_set *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_zts_fd_set, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_bsd_select" - "', argument " - "3" - " of type '" - "zts_fd_set *" - "'"); - } - arg3 = reinterpret_cast(argp3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_zts_fd_set, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_bsd_select" - "', argument " - "4" - " of type '" - "zts_fd_set *" - "'"); - } - arg4 = reinterpret_cast(argp4); - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_zts_timeval, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_bsd_select" - "', argument " - "5" - " of type '" - "zts_timeval *" - "'"); - } - arg5 = reinterpret_cast(argp5); - result = (int)zts_bsd_select(arg1, arg2, arg3, arg4, arg5); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_fcntl(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_fcntl", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_fcntl" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_fcntl" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_fcntl" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bsd_fcntl(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_poll(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_pollfd* arg1 = (zts_pollfd*)0; - zts_nfds_t arg2; - int arg3; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_poll", 3, 3, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_pollfd, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_bsd_poll" - "', argument " - "1" - " of type '" - "zts_pollfd *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_poll" - "', argument " - "2" - " of type '" - "zts_nfds_t" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_poll" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bsd_poll(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_ioctl(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - unsigned long arg2; - void* arg3 = (void*)0; - int val1; - int ecode1 = 0; - unsigned long val2; - int ecode2 = 0; - int res3; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_ioctl", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_ioctl" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_ioctl" - "', argument " - "2" - " of type '" - "unsigned long" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], SWIG_as_voidptrptr(&arg3), 0, 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_bsd_ioctl" - "', argument " - "3" - " of type '" - "void *" - "'"); - } - result = (int)zts_bsd_ioctl(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_send(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int arg4; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_send", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_send" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_send" - "', argument " - "2" - " of type '" - "void const *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_send" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_bsd_send" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - result = zts_bsd_send(arg1, (void const*)arg2, arg3, arg4); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_sendto(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int arg4; - zts_sockaddr* arg5 = (zts_sockaddr*)0; - zts_socklen_t arg6; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - int val4; - int ecode4 = 0; - void* argp5 = 0; - int res5 = 0; - unsigned int val6; - int ecode6 = 0; - PyObject* swig_obj[6]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_sendto", 6, 6, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_sendto" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_sendto" - "', argument " - "2" - " of type '" - "void const *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_sendto" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_bsd_sendto" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_bsd_sendto" - "', argument " - "5" - " of type '" - "zts_sockaddr const *" - "'"); - } - arg5 = reinterpret_cast(argp5); - ecode6 = SWIG_AsVal_unsigned_SS_int(swig_obj[5], &val6); - if (! SWIG_IsOK(ecode6)) { - SWIG_exception_fail( - SWIG_ArgError(ecode6), - "in method '" - "zts_bsd_sendto" - "', argument " - "6" - " of type '" - "zts_socklen_t" - "'"); - } - arg6 = static_cast(val6); - result = zts_bsd_sendto(arg1, (void const*)arg2, arg3, arg4, (zts_sockaddr const*)arg5, arg6); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_iovec_iov_base_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* arg1 = (zts_iovec*)0; - void* arg2 = (void*)0; - void* argp1 = 0; - int res1 = 0; - int res2; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_iovec_iov_base_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_iovec_iov_base_set" - "', argument " - "1" - " of type '" - "zts_iovec *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_iovec_iov_base_set" - "', argument " - "2" - " of type '" - "void *" - "'"); - } - if (arg1) - (arg1)->iov_base = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_iovec_iov_base_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* arg1 = (zts_iovec*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - void* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_iovec_iov_base_get" - "', argument " - "1" - " of type '" - "zts_iovec *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (void*)((arg1)->iov_base); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_iovec_iov_len_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* arg1 = (zts_iovec*)0; - size_t arg2; - void* argp1 = 0; - int res1 = 0; - size_t val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_iovec_iov_len_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_iovec_iov_len_set" - "', argument " - "1" - " of type '" - "zts_iovec *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_size_t(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_iovec_iov_len_set" - "', argument " - "2" - " of type '" - "size_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->iov_len = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_iovec_iov_len_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* arg1 = (zts_iovec*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - size_t result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_iovec_iov_len_get" - "', argument " - "1" - " of type '" - "zts_iovec *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = ((arg1)->iov_len); - resultobj = SWIG_From_size_t(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_new_zts_iovec(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* result = 0; - - if (! SWIG_Python_UnpackTuple(args, "new_zts_iovec", 0, 0, 0)) - SWIG_fail; - result = (zts_iovec*)new zts_iovec(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_iovec, SWIG_POINTER_NEW | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_delete_zts_iovec(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_iovec* arg1 = (zts_iovec*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_iovec, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_iovec" - "', argument " - "1" - " of type '" - "zts_iovec *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* zts_iovec_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_iovec, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* zts_iovec_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_bsd_sendmsg(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_msghdr* arg2 = (zts_msghdr*)0; - int arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_sendmsg", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_sendmsg" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_msghdr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_sendmsg" - "', argument " - "2" - " of type '" - "zts_msghdr const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_sendmsg" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_sendmsg(arg1, (zts_msghdr const*)arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_recv(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int arg4; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_recv", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_recv" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_recv" - "', argument " - "2" - " of type '" - "void *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_recv" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_bsd_recv" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - result = zts_bsd_recv(arg1, arg2, arg3, arg4); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_recvfrom(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int arg4; - zts_sockaddr* arg5 = (zts_sockaddr*)0; - zts_socklen_t* arg6 = (zts_socklen_t*)0; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - int val4; - int ecode4 = 0; - void* argp5 = 0; - int res5 = 0; - void* argp6 = 0; - int res6 = 0; - PyObject* swig_obj[6]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_recvfrom", 6, 6, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "2" - " of type '" - "void *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "5" - " of type '" - "zts_sockaddr *" - "'"); - } - arg5 = reinterpret_cast(argp5); - res6 = SWIG_ConvertPtr(swig_obj[5], &argp6, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res6)) { - SWIG_exception_fail( - SWIG_ArgError(res6), - "in method '" - "zts_bsd_recvfrom" - "', argument " - "6" - " of type '" - "zts_socklen_t *" - "'"); - } - arg6 = reinterpret_cast(argp6); - result = zts_bsd_recvfrom(arg1, arg2, arg3, arg4, arg5, arg6); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_recvmsg(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_msghdr* arg2 = (zts_msghdr*)0; - int arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_recvmsg", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_recvmsg" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_msghdr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_recvmsg" - "', argument " - "2" - " of type '" - "zts_msghdr *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_recvmsg" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_recvmsg(arg1, arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_read(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_read", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_read" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_read" - "', argument " - "2" - " of type '" - "void *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_read" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_read(arg1, arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_readv(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_iovec* arg2 = (zts_iovec*)0; - int arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_readv", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_readv" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_readv" - "', argument " - "2" - " of type '" - "zts_iovec const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_readv" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_readv(arg1, (zts_iovec const*)arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_write(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - size_t arg3; - int val1; - int ecode1 = 0; - int res2; - size_t val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_write", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_write" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_write" - "', argument " - "2" - " of type '" - "void const *" - "'"); - } - ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_write" - "', argument " - "3" - " of type '" - "size_t" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_write(arg1, (void const*)arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_writev(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - zts_iovec* arg2 = (zts_iovec*)0; - int arg3; - int val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - ssize_t result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_writev", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_writev" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_iovec, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bsd_writev" - "', argument " - "2" - " of type '" - "zts_iovec const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bsd_writev" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = zts_bsd_writev(arg1, (zts_iovec const*)arg2, arg3); - resultobj = SWIG_NewPointerObj( - (new ssize_t(static_cast(result))), - SWIGTYPE_p_ssize_t, - SWIG_POINTER_OWN | 0); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bsd_shutdown(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bsd_shutdown", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bsd_shutdown" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_bsd_shutdown" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_bsd_shutdown(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_connect(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - unsigned short arg3; - int arg4; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - unsigned short val3; - int ecode3 = 0; - int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_connect", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_connect" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_connect" - "', argument " - "2" - " of type '" - "char const *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_unsigned_SS_short(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_connect" - "', argument " - "3" - " of type '" - "unsigned short" - "'"); - } - arg3 = static_cast(val3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_connect" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_connect(arg1, (char const*)arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_bind(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - unsigned short arg3; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - unsigned short val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_bind", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_bind" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_bind" - "', argument " - "2" - " of type '" - "char const *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_unsigned_SS_short(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_bind" - "', argument " - "3" - " of type '" - "unsigned short" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_bind(arg1, (char const*)arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_accept(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - int arg3; - unsigned short* arg4 = (unsigned short*)0; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - int val3; - int ecode3 = 0; - void* argp4 = 0; - int res4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_accept", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_accept" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_accept" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_accept" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_accept" - "', argument " - "4" - " of type '" - "unsigned short *" - "'"); - } - arg4 = reinterpret_cast(argp4); - result = (int)zts_accept(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_getpeername(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - int arg3; - unsigned short* arg4 = (unsigned short*)0; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - int val3; - int ecode3 = 0; - void* argp4 = 0; - int res4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_getpeername", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_getpeername" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_getpeername" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_getpeername" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_getpeername" - "', argument " - "4" - " of type '" - "unsigned short *" - "'"); - } - arg4 = reinterpret_cast(argp4); - result = (int)zts_getpeername(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_getsockname(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - int arg3; - unsigned short* arg4 = (unsigned short*)0; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - int val3; - int ecode3 = 0; - void* argp4 = 0; - int res4 = 0; - PyObject* swig_obj[4]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_getsockname", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_getsockname" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_getsockname" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_getsockname" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_getsockname" - "', argument " - "4" - " of type '" - "unsigned short *" - "'"); - } - arg4 = reinterpret_cast(argp4); - result = (int)zts_getsockname(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_tcp_client(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned short arg2; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_tcp_client", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_tcp_client" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_tcp_client" - "', argument " - "2" - " of type '" - "unsigned short" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_tcp_client((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_tcp_server(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned short arg2; - char* arg3 = (char*)0; - int arg4; - unsigned short* arg5 = (unsigned short*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned short val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - int val4; - int ecode4 = 0; - void* argp5 = 0; - int res5 = 0; - PyObject* swig_obj[5]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_tcp_server", 5, 5, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_tcp_server" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_tcp_server" - "', argument " - "2" - " of type '" - "unsigned short" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_tcp_server" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_tcp_server" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_tcp_server" - "', argument " - "5" - " of type '" - "unsigned short *" - "'"); - } - arg5 = reinterpret_cast(argp5); - result = (int)zts_tcp_server((char const*)arg1, arg2, arg3, arg4, arg5); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_udp_server(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned short arg2; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned short val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_udp_server", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_udp_server" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_udp_server" - "', argument " - "2" - " of type '" - "unsigned short" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_udp_server((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_udp_client(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_udp_client" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - result = (int)zts_udp_client((char const*)arg1); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_no_delay(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_no_delay", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_no_delay" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_no_delay" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_no_delay(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_no_delay(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_no_delay" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_no_delay(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_linger(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_linger", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_linger" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_linger" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_set_linger" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_set_linger(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_linger_enabled(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_linger_enabled" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_linger_enabled(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_linger_value(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_linger_value" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_linger_value(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_pending_data_size(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_pending_data_size" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_pending_data_size(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_reuse_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_reuse_addr", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_reuse_addr" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_reuse_addr" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_reuse_addr(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_reuse_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_reuse_addr" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_reuse_addr(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_recv_timeout(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_recv_timeout", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_recv_timeout" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_recv_timeout" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_set_recv_timeout" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_set_recv_timeout(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_recv_timeout(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_recv_timeout" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_recv_timeout(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_send_timeout(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int arg3; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - int val3; - int ecode3 = 0; - PyObject* swig_obj[3]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_send_timeout", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_send_timeout" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_send_timeout" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); - if (! SWIG_IsOK(ecode3)) { - SWIG_exception_fail( - SWIG_ArgError(ecode3), - "in method '" - "zts_set_send_timeout" - "', argument " - "3" - " of type '" - "int" - "'"); - } - arg3 = static_cast(val3); - result = (int)zts_set_send_timeout(arg1, arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_send_timeout(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_send_timeout" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_send_timeout(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_send_buf_size(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_send_buf_size", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_send_buf_size" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_send_buf_size" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_send_buf_size(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_send_buf_size(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_send_buf_size" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_send_buf_size(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_recv_buf_size(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_recv_buf_size", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_recv_buf_size" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_recv_buf_size" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_recv_buf_size(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_recv_buf_size(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_recv_buf_size" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_recv_buf_size(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_ttl(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_ttl", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_ttl" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_ttl" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_ttl(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_ttl(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_ttl" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_ttl(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_blocking(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_blocking", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_blocking" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_blocking" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_blocking(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_blocking(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_blocking" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_blocking(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_set_keepalive(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int arg2; - int val1; - int ecode1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_set_keepalive", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_set_keepalive" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_set_keepalive" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - result = (int)zts_set_keepalive(arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_get_keepalive(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - int val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_get_keepalive" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_get_keepalive(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; -fail: - return NULL; -} - -SWIGINTERN PyObject* _wrap_zts_hostent_h_name_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - char* arg2 = (char*)0; - void* argp1 = 0; - int res1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_hostent_h_name_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_name_set" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_hostent_h_name_set" - "', argument " - "2" - " of type '" - "char *" - "'"); - } - arg2 = reinterpret_cast(buf2); - if (arg1->h_name) - delete[] arg1->h_name; + size_t ii = 0; + for (; ii < (size_t)16; ++ii) *(zts_sockaddr_storage *)&arg1->assigned_addrs[ii] = *((zts_sockaddr_storage *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""assigned_addrs""' of type '""zts_sockaddr_storage [16]""'"); + } + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_assigned_addrs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_sockaddr_storage *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_assigned_addrs_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (zts_sockaddr_storage *)(zts_sockaddr_storage *) ((arg1)->assigned_addrs); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_route_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_route_count_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_route_count_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_route_count_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + if (arg1) (arg1)->route_count = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_route_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_route_count_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (unsigned int) ((arg1)->route_count); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_info_t_routes_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + zts_route_info_t *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_routes_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_routes_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_net_info_t_routes_set" "', argument " "2"" of type '" "zts_route_info_t [32]""'"); + } + arg2 = reinterpret_cast< zts_route_info_t * >(argp2); + { if (arg2) { - size_t size = strlen(reinterpret_cast(arg2)) + 1; - arg1->h_name = (char*)reinterpret_cast( - memcpy(new char[size], reinterpret_cast(arg2), sizeof(char) * (size))); + size_t ii = 0; + for (; ii < (size_t)32; ++ii) *(zts_route_info_t *)&arg1->routes[ii] = *((zts_route_info_t *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""routes""' of type '""zts_route_info_t [32]""'"); } - else { - arg1->h_name = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; + } + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_name_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char* result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_name_get" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char*)((arg1)->h_name); - resultobj = SWIG_FromCharPtr((const char*)result); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_net_info_t_routes_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_route_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_routes_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (zts_route_info_t *)(zts_route_info_t *) ((arg1)->routes); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_aliases_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - char** arg2 = (char**)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_hostent_h_aliases_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_aliases_set" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_p_char, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_hostent_h_aliases_set" - "', argument " - "2" - " of type '" - "char **" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->h_aliases = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_net_info_t_multicast_sub_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_info_t_multicast_sub_count_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_multicast_sub_count_set" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_info_t_multicast_sub_count_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + if (arg1) (arg1)->multicast_sub_count = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_aliases_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char** result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_aliases_get" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char**)((arg1)->h_aliases); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_net_info_t_multicast_sub_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_net_info_t_multicast_sub_count_get" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + result = (unsigned int) ((arg1)->multicast_sub_count); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_addrtype_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_hostent_h_addrtype_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_addrtype_set" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_hostent_h_addrtype_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->h_addrtype = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_new_zts_net_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_net_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_net_info_t *)new zts_net_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_addrtype_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_addrtype_get" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->h_addrtype); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_delete_zts_net_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_net_info_t *arg1 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_net_info_t" "', argument " "1"" of type '" "zts_net_info_t *""'"); + } + arg1 = reinterpret_cast< zts_net_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_length_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - int arg2; - void* argp1 = 0; - int res1 = 0; - int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_hostent_h_length_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_length_set" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_hostent_h_length_set" - "', argument " - "2" - " of type '" - "int" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->h_length = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *zts_net_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_net_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_net_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_path_t_address_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + zts_sockaddr_storage *arg2 = (zts_sockaddr_storage *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_address_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_address_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_path_t_address_set" "', argument " "2"" of type '" "zts_sockaddr_storage *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + if (arg1) (arg1)->address = *arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_length_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_length_get" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (int)((arg1)->h_length); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_address_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_sockaddr_storage *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_address_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (zts_sockaddr_storage *)& ((arg1)->address); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_addr_list_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - char** arg2 = (char**)0; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_hostent_h_addr_list_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_addr_list_set" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_p_char, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_hostent_h_addr_list_set" - "', argument " - "2" - " of type '" - "char **" - "'"); - } - arg2 = reinterpret_cast(argp2); - if (arg1) - (arg1)->h_addr_list = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_last_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_last_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_last_tx_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_last_tx_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->last_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_hostent_h_addr_list_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char** result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_hostent_h_addr_list_get" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char**)((arg1)->h_addr_list); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_last_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_last_tx_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (uint64_t) ((arg1)->last_tx); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_new_zts_hostent(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* result = 0; - if (! SWIG_Python_UnpackTuple(args, "new_zts_hostent", 0, 0, 0)) - SWIG_fail; - result = (zts_hostent*)new zts_hostent(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_hostent, SWIG_POINTER_NEW | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_last_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_last_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_last_rx_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_last_rx_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->last_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_delete_zts_hostent(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_hostent* arg1 = (zts_hostent*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_hostent, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_hostent" - "', argument " - "1" - " of type '" - "zts_hostent *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_last_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_last_rx_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (uint64_t) ((arg1)->last_rx); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* zts_hostent_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_hostent, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} -SWIGINTERN PyObject* zts_hostent_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_bsd_gethostbyname(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - PyObject* swig_obj[1]; - zts_hostent* result = 0; - - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_bsd_gethostbyname" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - result = (zts_hostent*)zts_bsd_gethostbyname((char const*)arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_hostent, 0 | 0); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_trusted_path_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_trusted_path_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_trusted_path_id_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_trusted_path_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->trusted_path_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ip4_addr_addr_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip4_addr* arg1 = (zts_ip4_addr*)0; - uint32_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_ip4_addr_addr_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip4_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip4_addr_addr_set" - "', argument " - "1" - " of type '" - "zts_ip4_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_ip4_addr_addr_set" - "', argument " - "2" - " of type '" - "uint32_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->addr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_trusted_path_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_trusted_path_id_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (uint64_t) ((arg1)->trusted_path_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ip4_addr_addr_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip4_addr* arg1 = (zts_ip4_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip4_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip4_addr_addr_get" - "', argument " - "1" - " of type '" - "zts_ip4_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t)((arg1)->addr); - resultobj = SWIG_From_unsigned_SS_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_latency_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_latency_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_latency_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_latency_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->latency = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_new_zts_ip4_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip4_addr* result = 0; - if (! SWIG_Python_UnpackTuple(args, "new_zts_ip4_addr", 0, 0, 0)) - SWIG_fail; - result = (zts_ip4_addr*)new zts_ip4_addr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip4_addr, SWIG_POINTER_NEW | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_latency_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_latency_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->latency); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_delete_zts_ip4_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip4_addr* arg1 = (zts_ip4_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip4_addr, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_ip4_addr" - "', argument " - "1" - " of type '" - "zts_ip4_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_path_t_unused_0_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_0_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_0_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_0_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_0 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* zts_ip4_addr_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip4_addr, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_0_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_0_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_0); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; } -SWIGINTERN PyObject* zts_ip4_addr_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_1_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_1_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_1_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_1 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ip6_addr_addr_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip6_addr* arg1 = (zts_ip6_addr*)0; - uint32_t* arg2; - void* argp1 = 0; - int res1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - if (! SWIG_Python_UnpackTuple(args, "zts_ip6_addr_addr_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip6_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip6_addr_addr_set" - "', argument " - "1" - " of type '" - "zts_ip6_addr *" - "'"); +SWIGINTERN PyObject *_wrap_zts_path_t_unused_1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_1_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_1); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_2_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_2_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_2_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_2 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_2_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_2); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_3_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_3_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_3_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_3_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_3 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_3_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_3_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_3); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_4_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_4_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_4_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_4_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_4 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_4_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_4_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_4); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_5_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_5_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_5_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_5_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->unused_5 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_5_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_5_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (uint64_t) ((arg1)->unused_5); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_6_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_6_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_6_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_6_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->unused_6 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_6_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_6_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (uint64_t) ((arg1)->unused_6); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_7_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + float arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + float val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_unused_7_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_7_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_float(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_unused_7_set" "', argument " "2"" of type '" "float""'"); + } + arg2 = static_cast< float >(val2); + if (arg1) (arg1)->unused_7 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_unused_7_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + float result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_unused_7_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (float) ((arg1)->unused_7); + resultobj = SWIG_From_float(static_cast< float >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_ifname_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_ifname_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_ifname_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_path_t_ifname_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + if (arg1->ifname) delete[] arg1->ifname; + if (arg2) { + size_t size = strlen(reinterpret_cast< const char * >(arg2)) + 1; + arg1->ifname = (char *)reinterpret_cast< char* >(memcpy(new char[size], reinterpret_cast< const char * >(arg2), sizeof(char)*(size))); + } else { + arg1->ifname = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_ifname_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_ifname_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (char *) ((arg1)->ifname); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_expired_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_expired_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_expired_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_expired_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->expired = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_expired_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_expired_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (int) ((arg1)->expired); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_preferred_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_path_t_preferred_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_preferred_set" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_path_t_preferred_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->preferred = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_path_t_preferred_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_path_t_preferred_get" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + result = (int) ((arg1)->preferred); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_path_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_path_t", 0, 0, 0)) SWIG_fail; + result = (zts_path_t *)new zts_path_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_path_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_path_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_path_t *arg1 = (zts_path_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_path_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_path_t" "', argument " "1"" of type '" "zts_path_t *""'"); + } + arg1 = reinterpret_cast< zts_path_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_path_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_path_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_path_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_peer_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_peer_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_peer_id_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_peer_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->peer_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_peer_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_peer_id_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (uint64_t) ((arg1)->peer_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_major_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_major_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_major_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_ver_major_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->ver_major = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_major_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_major_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (int) ((arg1)->ver_major); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_minor_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_minor_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_minor_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_ver_minor_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->ver_minor = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_minor_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_minor_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (int) ((arg1)->ver_minor); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_rev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_ver_rev_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_rev_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_ver_rev_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->ver_rev = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_ver_rev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_ver_rev_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (int) ((arg1)->ver_rev); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_latency_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_latency_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_latency_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_latency_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->latency = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_latency_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_latency_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (int) ((arg1)->latency); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_role_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + zts_peer_role_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_role_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_role_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_role_set" "', argument " "2"" of type '" "zts_peer_role_t""'"); + } + arg2 = static_cast< zts_peer_role_t >(val2); + if (arg1) (arg1)->role = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_role_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_peer_role_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_role_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (zts_peer_role_t) ((arg1)->role); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_path_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + unsigned int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_path_count_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_path_count_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_path_count_set" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + if (arg1) (arg1)->path_count = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_path_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + unsigned int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_path_count_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (unsigned int) ((arg1)->path_count); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_unused_0_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_unused_0_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_unused_0_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_peer_info_t_unused_0_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->unused_0 = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_unused_0_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_unused_0_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (int) ((arg1)->unused_0); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_paths_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + zts_path_t *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_peer_info_t_paths_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_paths_set" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_path_t, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_peer_info_t_paths_set" "', argument " "2"" of type '" "zts_path_t [16]""'"); + } + arg2 = reinterpret_cast< zts_path_t * >(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)16; ++ii) *(zts_path_t *)&arg1->paths[ii] = *((zts_path_t *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""paths""' of type '""zts_path_t [16]""'"); } - arg1 = reinterpret_cast(argp1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_ip6_addr_addr_set" - "', argument " - "2" - " of type '" - "uint32_t [4]" - "'"); + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_peer_info_t_paths_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_path_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_peer_info_t_paths_get" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + result = (zts_path_t *)(zts_path_t *) ((arg1)->paths); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_path_t, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_peer_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_peer_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_peer_info_t *)new zts_peer_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_peer_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_peer_info_t *arg1 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_peer_info_t" "', argument " "1"" of type '" "zts_peer_info_t *""'"); + } + arg1 = reinterpret_cast< zts_peer_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_peer_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_peer_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_peer_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_root_set_t_public_id_str_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *arg1 = (zts_root_set_t *) 0 ; + char **arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_root_set_t_public_id_str_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_root_set_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_root_set_t_public_id_str_set" "', argument " "1"" of type '" "zts_root_set_t *""'"); + } + arg1 = reinterpret_cast< zts_root_set_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_root_set_t_public_id_str_set" "', argument " "2"" of type '" "char *[16]""'"); + } + arg2 = reinterpret_cast< char ** >(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)16; ++ii) *(char * *)&arg1->public_id_str[ii] = *((char * *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""public_id_str""' of type '""char *[16]""'"); } - arg2 = reinterpret_cast(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) - *(uint32_t*)&arg1->addr[ii] = *((uint32_t*)arg2 + ii); - } - else { - SWIG_exception_fail( - SWIG_ValueError, - "invalid null reference " - "in variable '" - "addr" - "' of type '" - "uint32_t [4]" - "'"); + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_root_set_t_public_id_str_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *arg1 = (zts_root_set_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char **result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_root_set_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_root_set_t_public_id_str_get" "', argument " "1"" of type '" "zts_root_set_t *""'"); + } + arg1 = reinterpret_cast< zts_root_set_t * >(argp1); + result = (char **)(char **) ((arg1)->public_id_str); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_root_set_t_endpoint_ip_str_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *arg1 = (zts_root_set_t *) 0 ; + char *(*arg2)[32] ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_root_set_t_endpoint_ip_str_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_root_set_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_root_set_t_endpoint_ip_str_set" "', argument " "1"" of type '" "zts_root_set_t *""'"); + } + arg1 = reinterpret_cast< zts_root_set_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_a_32__p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_root_set_t_endpoint_ip_str_set" "', argument " "2"" of type '" "char *[16][32]""'"); + } + arg2 = reinterpret_cast< char *(*)[32] >(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)16; ++ii) { + if (arg2[ii]) { + size_t jj = 0; + for (; jj < (size_t)32; ++jj) arg1->endpoint_ip_str[ii][jj] = arg2[ii][jj]; + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""endpoint_ip_str""' of type '""char *[16][32]""'"); } + } + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""endpoint_ip_str""' of type '""char *[16][32]""'"); } - resultobj = SWIG_Py_Void(); - return resultobj; + } + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ip6_addr_addr_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip6_addr* arg1 = (zts_ip6_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint32_t* result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip6_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip6_addr_addr_get" - "', argument " - "1" - " of type '" - "zts_ip6_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint32_t*)(uint32_t*)((arg1)->addr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_int, 0 | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_root_set_t_endpoint_ip_str_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *arg1 = (zts_root_set_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char *(*result)[32] = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_root_set_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_root_set_t_endpoint_ip_str_get" "', argument " "1"" of type '" "zts_root_set_t *""'"); + } + arg1 = reinterpret_cast< zts_root_set_t * >(argp1); + result = (char *(*)[32])(char *(*)[32]) ((arg1)->endpoint_ip_str); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_32__p_char, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_new_zts_ip6_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip6_addr* result = 0; - if (! SWIG_Python_UnpackTuple(args, "new_zts_ip6_addr", 0, 0, 0)) - SWIG_fail; - result = (zts_ip6_addr*)new zts_ip6_addr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip6_addr, SWIG_POINTER_NEW | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_new_zts_root_set_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_root_set_t", 0, 0, 0)) SWIG_fail; + result = (zts_root_set_t *)new zts_root_set_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_root_set_t, SWIG_POINTER_NEW | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_delete_zts_ip6_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip6_addr* arg1 = (zts_ip6_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip6_addr, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_ip6_addr" - "', argument " - "1" - " of type '" - "zts_ip6_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_delete_zts_root_set_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_root_set_t *arg1 = (zts_root_set_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_root_set_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_root_set_t" "', argument " "1"" of type '" "zts_root_set_t *""'"); + } + arg1 = reinterpret_cast< zts_root_set_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* zts_ip6_addr_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip6_addr, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); + +SWIGINTERN PyObject *zts_root_set_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_root_set_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); } -SWIGINTERN PyObject* zts_ip6_addr_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); +SWIGINTERN PyObject *zts_root_set_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); } -SWIGINTERN PyObject* _wrap_zts_ip_addr_type_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip_addr* arg1 = (zts_ip_addr*)0; - uint8_t arg2; - void* argp1 = 0; - int res1 = 0; - unsigned char val2; - int ecode2 = 0; - PyObject* swig_obj[2]; - - if (! SWIG_Python_UnpackTuple(args, "zts_ip_addr_type_set", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip_addr_type_set" - "', argument " - "1" - " of type '" - "zts_ip_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_ip_addr_type_set" - "', argument " - "2" - " of type '" - "uint8_t" - "'"); - } - arg2 = static_cast(val2); - if (arg1) - (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_net_id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_netif_info_t_net_id_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_net_id_set" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_netif_info_t_net_id_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->net_id = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ip_addr_type_get(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip_addr* arg1 = (zts_ip_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - uint8_t result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ip_addr_type_get" - "', argument " - "1" - " of type '" - "zts_ip_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (uint8_t)((arg1)->type); - resultobj = SWIG_From_unsigned_SS_char(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_net_id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_net_id_get" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + result = (uint64_t) ((arg1)->net_id); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_new_zts_ip_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip_addr* result = 0; - if (! SWIG_Python_UnpackTuple(args, "new_zts_ip_addr", 0, 0, 0)) - SWIG_fail; - result = (zts_ip_addr*)new zts_ip_addr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip_addr, SWIG_POINTER_NEW | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_mac_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + uint64_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_netif_info_t_mac_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_mac_set" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_netif_info_t_mac_set" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + if (arg1) (arg1)->mac = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_delete_zts_ip_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip_addr* arg1 = (zts_ip_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip_addr, SWIG_POINTER_DISOWN | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "delete_zts_ip_addr" - "', argument " - "1" - " of type '" - "zts_ip_addr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_mac_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_mac_get" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + result = (uint64_t) ((arg1)->mac); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* zts_ip_addr_swigregister(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* obj; - if (! SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) - return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip_addr, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} -SWIGINTERN PyObject* zts_ip_addr_swiginit(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - return SWIG_Python_InitShadowInstance(args); -} - -SWIGINTERN PyObject* _wrap_zts_dns_set_server(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint8_t arg1; - zts_ip_addr* arg2 = (zts_ip_addr*)0; - unsigned char val1; - int ecode1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - int result; - - if (! SWIG_Python_UnpackTuple(args, "zts_dns_set_server", 2, 2, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_char(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_dns_set_server" - "', argument " - "1" - " of type '" - "uint8_t" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_ip_addr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_dns_set_server" - "', argument " - "2" - " of type '" - "zts_ip_addr const *" - "'"); - } - arg2 = reinterpret_cast(argp2); - result = (int)zts_dns_set_server(arg1, (zts_ip_addr const*)arg2); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_mtu_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_netif_info_t_mtu_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_mtu_set" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_netif_info_t_mtu_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->mtu = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_dns_get_server(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint8_t arg1; - unsigned char val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - zts_ip_addr* result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_char(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_dns_get_server" - "', argument " - "1" - " of type '" - "uint8_t" - "'"); - } - arg1 = static_cast(val1); - result = (zts_ip_addr*)zts_dns_get_server(arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip_addr, 0 | 0); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_netif_info_t_mtu_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_netif_info_t_mtu_get" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + result = (int) ((arg1)->mtu); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_lock_obtain(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_lock_obtain", 0, 0, 0)) - SWIG_fail; - result = (int)zts_core_lock_obtain(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_new_zts_netif_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_netif_info_t", 0, 0, 0)) SWIG_fail; + result = (zts_netif_info_t *)new zts_netif_info_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_NEW | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_lock_release(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_lock_release", 0, 0, 0)) - SWIG_fail; - result = (int)zts_core_lock_release(); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_delete_zts_netif_info_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_netif_info_t *arg1 = (zts_netif_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_netif_info_t" "', argument " "1"" of type '" "zts_netif_info_t *""'"); + } + arg1 = reinterpret_cast< zts_netif_info_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_addr_count(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_addr_count" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_core_query_addr_count(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *zts_netif_info_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_netif_info_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_netif_info_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_event_msg_t_event_code_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + int16_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_event_code_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_event_code_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + ecode2 = SWIG_AsVal_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_event_msg_t_event_code_set" "', argument " "2"" of type '" "int16_t""'"); + } + arg2 = static_cast< int16_t >(val2); + if (arg1) (arg1)->event_code = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_addr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - char* arg3 = (char*)0; - unsigned int arg4; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_query_addr", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_addr" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_core_query_addr" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_core_query_addr" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_core_query_addr" - "', argument " - "4" - " of type '" - "unsigned int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_core_query_addr(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_event_code_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int16_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_event_code_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (int16_t) ((arg1)->event_code); + resultobj = SWIG_From_short(static_cast< short >(result)); + return resultobj; fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_route_count(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_route_count" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_core_query_route_count(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_node_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_node_info_t *arg2 = (zts_node_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_node_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_node_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_node_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_node_set" "', argument " "2"" of type '" "zts_node_info_t *""'"); + } + arg2 = reinterpret_cast< zts_node_info_t * >(argp2); + if (arg1) (arg1)->node = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_route(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - char* arg3 = (char*)0; - char* arg4 = (char*)0; - unsigned int arg5; - uint16_t* arg6 = (uint16_t*)0; - uint16_t* arg7 = (uint16_t*)0; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - int res4; - char* buf4 = 0; - int alloc4 = 0; - unsigned int val5; - int ecode5 = 0; - void* argp6 = 0; - int res6 = 0; - void* argp7 = 0; - int res7 = 0; - PyObject* swig_obj[7]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_query_route", 7, 7, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_route" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_core_query_route" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_core_query_route" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - res4 = SWIG_AsCharPtrAndSize(swig_obj[3], &buf4, NULL, &alloc4); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_core_query_route" - "', argument " - "4" - " of type '" - "char *" - "'"); - } - arg4 = reinterpret_cast(buf4); - ecode5 = SWIG_AsVal_unsigned_SS_int(swig_obj[4], &val5); - if (! SWIG_IsOK(ecode5)) { - SWIG_exception_fail( - SWIG_ArgError(ecode5), - "in method '" - "zts_core_query_route" - "', argument " - "5" - " of type '" - "unsigned int" - "'"); - } - arg5 = static_cast(val5); - res6 = SWIG_ConvertPtr(swig_obj[5], &argp6, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res6)) { - SWIG_exception_fail( - SWIG_ArgError(res6), - "in method '" - "zts_core_query_route" - "', argument " - "6" - " of type '" - "uint16_t *" - "'"); - } - arg6 = reinterpret_cast(argp6); - res7 = SWIG_ConvertPtr(swig_obj[6], &argp7, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res7)) { - SWIG_exception_fail( - SWIG_ArgError(res7), - "in method '" - "zts_core_query_route" - "', argument " - "7" - " of type '" - "uint16_t *" - "'"); - } - arg7 = reinterpret_cast(argp7); - result = (int)zts_core_query_route(arg1, arg2, arg3, arg4, arg5, arg6, arg7); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) - delete[] buf4; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_node_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_node_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_node_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_node_info_t *) ((arg1)->node); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_node_info_t, 0 | 0 ); + return resultobj; fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) - delete[] buf4; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_path_count(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_path_count" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_core_query_path_count(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_network_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_net_info_t *arg2 = (zts_net_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_network_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_network_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_net_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_network_set" "', argument " "2"" of type '" "zts_net_info_t *""'"); + } + arg2 = reinterpret_cast< zts_net_info_t * >(argp2); + if (arg1) (arg1)->network = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_path(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - char* arg3 = (char*)0; - unsigned int arg4; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_query_path", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_path" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_core_query_path" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_core_query_path" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_core_query_path" - "', argument " - "4" - " of type '" - "unsigned int" - "'"); - } - arg4 = static_cast(val4); - result = (int)zts_core_query_path(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_network_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_net_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_network_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_net_info_t *) ((arg1)->network); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_net_info_t, 0 | 0 ); + return resultobj; fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_mc_count(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned long long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_mc_count" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - result = (int)zts_core_query_mc_count(arg1); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_netif_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_netif_info_t *arg2 = (zts_netif_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_netif_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_netif_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_netif_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_netif_set" "', argument " "2"" of type '" "zts_netif_info_t *""'"); + } + arg2 = reinterpret_cast< zts_netif_info_t * >(argp2); + if (arg1) (arg1)->netif = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_core_query_mc(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - uint64_t arg1; - unsigned int arg2; - uint64_t* arg3 = (uint64_t*)0; - uint32_t* arg4 = (uint32_t*)0; - unsigned long long val1; - int ecode1 = 0; - unsigned int val2; - int ecode2 = 0; - void* argp3 = 0; - int res3 = 0; - void* argp4 = 0; - int res4 = 0; - PyObject* swig_obj[4]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_core_query_mc", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_core_query_mc" - "', argument " - "1" - " of type '" - "uint64_t" - "'"); - } - arg1 = static_cast(val1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_core_query_mc" - "', argument " - "2" - " of type '" - "unsigned int" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_unsigned_long_long, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_core_query_mc" - "', argument " - "3" - " of type '" - "uint64_t *" - "'"); - } - arg3 = reinterpret_cast(argp3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_core_query_mc" - "', argument " - "4" - " of type '" - "uint32_t *" - "'"); - } - arg4 = reinterpret_cast(argp4); - result = (int)zts_core_query_mc(arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_netif_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_netif_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_netif_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_netif_info_t *) ((arg1)->netif); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_netif_info_t, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_util_sign_root_set(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned int* arg2 = (unsigned int*)0; - char* arg3 = (char*)0; - unsigned int* arg4 = (unsigned int*)0; - char* arg5 = (char*)0; - unsigned int* arg6 = (unsigned int*)0; - uint64_t arg7; - uint64_t arg8; - zts_root_set_t* arg9 = (zts_root_set_t*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - void* argp2 = 0; - int res2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - void* argp4 = 0; - int res4 = 0; - int res5; - char* buf5 = 0; - int alloc5 = 0; - void* argp6 = 0; - int res6 = 0; - unsigned long long val7; - int ecode7 = 0; - unsigned long long val8; - int ecode8 = 0; - void* argp9 = 0; - int res9 = 0; - PyObject* swig_obj[9]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_util_sign_root_set", 9, 9, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_util_sign_root_set" - "', argument " - "1" - " of type '" - "char *" - "'"); - } - arg1 = reinterpret_cast(buf1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_util_sign_root_set" - "', argument " - "2" - " of type '" - "unsigned int *" - "'"); - } - arg2 = reinterpret_cast(argp2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_util_sign_root_set" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_util_sign_root_set" - "', argument " - "4" - " of type '" - "unsigned int *" - "'"); - } - arg4 = reinterpret_cast(argp4); - res5 = SWIG_AsCharPtrAndSize(swig_obj[4], &buf5, NULL, &alloc5); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_util_sign_root_set" - "', argument " - "5" - " of type '" - "char *" - "'"); - } - arg5 = reinterpret_cast(buf5); - res6 = SWIG_ConvertPtr(swig_obj[5], &argp6, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res6)) { - SWIG_exception_fail( - SWIG_ArgError(res6), - "in method '" - "zts_util_sign_root_set" - "', argument " - "6" - " of type '" - "unsigned int *" - "'"); - } - arg6 = reinterpret_cast(argp6); - ecode7 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[6], &val7); - if (! SWIG_IsOK(ecode7)) { - SWIG_exception_fail( - SWIG_ArgError(ecode7), - "in method '" - "zts_util_sign_root_set" - "', argument " - "7" - " of type '" - "uint64_t" - "'"); - } - arg7 = static_cast(val7); - ecode8 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[7], &val8); - if (! SWIG_IsOK(ecode8)) { - SWIG_exception_fail( - SWIG_ArgError(ecode8), - "in method '" - "zts_util_sign_root_set" - "', argument " - "8" - " of type '" - "uint64_t" - "'"); - } - arg8 = static_cast(val8); - res9 = SWIG_ConvertPtr(swig_obj[8], &argp9, SWIGTYPE_p_zts_root_set_t, 0 | 0); - if (! SWIG_IsOK(res9)) { - SWIG_exception_fail( - SWIG_ArgError(res9), - "in method '" - "zts_util_sign_root_set" - "', argument " - "9" - " of type '" - "zts_root_set_t *" - "'"); - } - arg9 = reinterpret_cast(argp9); - result = (int)zts_util_sign_root_set(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - if (alloc5 == SWIG_NEWOBJ) - delete[] buf5; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_route_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_route_info_t *arg2 = (zts_route_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_route_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_route_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_route_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_route_set" "', argument " "2"" of type '" "zts_route_info_t *""'"); + } + arg2 = reinterpret_cast< zts_route_info_t * >(argp2); + if (arg1) (arg1)->route = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - if (alloc5 == SWIG_NEWOBJ) - delete[] buf5; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_util_delay(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - unsigned long arg1; - unsigned long val1; - int ecode1 = 0; - PyObject* swig_obj[1]; - if (! args) - SWIG_fail; - swig_obj[0] = args; - ecode1 = SWIG_AsVal_unsigned_SS_long(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_util_delay" - "', argument " - "1" - " of type '" - "unsigned long" - "'"); - } - arg1 = static_cast(val1); - zts_util_delay(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_route_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_route_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_route_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_route_info_t *) ((arg1)->route); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_route_info_t, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_util_get_ip_family(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - PyObject* swig_obj[1]; - int result; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_util_get_ip_family" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - result = (int)zts_util_get_ip_family((char const*)arg1); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_peer_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_peer_info_t *arg2 = (zts_peer_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_peer_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_peer_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_peer_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_peer_set" "', argument " "2"" of type '" "zts_peer_info_t *""'"); + } + arg2 = reinterpret_cast< zts_peer_info_t * >(argp2); + if (arg1) (arg1)->peer = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_util_ipstr_to_saddr(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - unsigned short arg2; - zts_sockaddr* arg3 = (zts_sockaddr*)0; - zts_socklen_t* arg4 = (zts_socklen_t*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - unsigned short val2; - int ecode2 = 0; - void* argp3 = 0; - int res3 = 0; - void* argp4 = 0; - int res4 = 0; - PyObject* swig_obj[4]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_util_ipstr_to_saddr", 4, 4, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_util_ipstr_to_saddr" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_util_ipstr_to_saddr" - "', argument " - "2" - " of type '" - "unsigned short" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_ConvertPtr(swig_obj[2], &argp3, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_util_ipstr_to_saddr" - "', argument " - "3" - " of type '" - "zts_sockaddr *" - "'"); - } - arg3 = reinterpret_cast(argp3); - res4 = SWIG_ConvertPtr(swig_obj[3], &argp4, SWIGTYPE_p_unsigned_int, 0 | 0); - if (! SWIG_IsOK(res4)) { - SWIG_exception_fail( - SWIG_ArgError(res4), - "in method '" - "zts_util_ipstr_to_saddr" - "', argument " - "4" - " of type '" - "zts_socklen_t *" - "'"); - } - arg4 = reinterpret_cast(argp4); - result = (int)zts_util_ipstr_to_saddr((char const*)arg1, arg2, arg3, arg4); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_peer_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_peer_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_peer_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_peer_info_t *) ((arg1)->peer); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_peer_info_t, 0 | 0 ); + return resultobj; fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_util_ntop(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_sockaddr* arg1 = (zts_sockaddr*)0; - zts_socklen_t arg2; - char* arg3 = (char*)0; - int arg4; - unsigned short* arg5 = (unsigned short*)0; - void* argp1 = 0; - int res1 = 0; - unsigned int val2; - int ecode2 = 0; - int res3; - char* buf3 = 0; - int alloc3 = 0; - int val4; - int ecode4 = 0; - void* argp5 = 0; - int res5 = 0; - PyObject* swig_obj[5]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_util_ntop", 5, 5, swig_obj)) - SWIG_fail; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_sockaddr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_util_ntop" - "', argument " - "1" - " of type '" - "zts_sockaddr *" - "'"); - } - arg1 = reinterpret_cast(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); - if (! SWIG_IsOK(ecode2)) { - SWIG_exception_fail( - SWIG_ArgError(ecode2), - "in method '" - "zts_util_ntop" - "', argument " - "2" - " of type '" - "zts_socklen_t" - "'"); - } - arg2 = static_cast(val2); - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_util_ntop" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_util_ntop" - "', argument " - "4" - " of type '" - "int" - "'"); - } - arg4 = static_cast(val4); - res5 = SWIG_ConvertPtr(swig_obj[4], &argp5, SWIGTYPE_p_unsigned_short, 0 | 0); - if (! SWIG_IsOK(res5)) { - SWIG_exception_fail( - SWIG_ArgError(res5), - "in method '" - "zts_util_ntop" - "', argument " - "5" - " of type '" - "unsigned short *" - "'"); - } - arg5 = reinterpret_cast(argp5); - result = (int)zts_util_ntop(arg1, arg2, arg3, arg4, arg5); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + zts_addr_info_t *arg2 = (zts_addr_info_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_addr_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_addr_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_addr_info_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_addr_set" "', argument " "2"" of type '" "zts_addr_info_t *""'"); + } + arg2 = reinterpret_cast< zts_addr_info_t * >(argp2); + if (arg1) (arg1)->addr = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ipaddr_ntoa(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - zts_ip_addr* arg1 = (zts_ip_addr*)0; - void* argp1 = 0; - int res1 = 0; - PyObject* swig_obj[1]; - char* result = 0; - if (! args) - SWIG_fail; - swig_obj[0] = args; - res1 = SWIG_ConvertPtr(swig_obj[0], &argp1, SWIGTYPE_p_zts_ip_addr, 0 | 0); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ipaddr_ntoa" - "', argument " - "1" - " of type '" - "zts_ip_addr const *" - "'"); - } - arg1 = reinterpret_cast(argp1); - result = (char*)zts_ipaddr_ntoa((zts_ip_addr const*)arg1); - resultobj = SWIG_FromCharPtr((const char*)result); - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + zts_addr_info_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_addr_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (zts_addr_info_t *) ((arg1)->addr); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_addr_info_t, 0 | 0 ); + return resultobj; fail: - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_ipaddr_aton(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - char* arg1 = (char*)0; - zts_ip_addr* arg2 = (zts_ip_addr*)0; - int res1; - char* buf1 = 0; - int alloc1 = 0; - void* argp2 = 0; - int res2 = 0; - PyObject* swig_obj[2]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_ipaddr_aton", 2, 2, swig_obj)) - SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); - if (! SWIG_IsOK(res1)) { - SWIG_exception_fail( - SWIG_ArgError(res1), - "in method '" - "zts_ipaddr_aton" - "', argument " - "1" - " of type '" - "char const *" - "'"); - } - arg1 = reinterpret_cast(buf1); - res2 = SWIG_ConvertPtr(swig_obj[1], &argp2, SWIGTYPE_p_zts_ip_addr, 0 | 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_ipaddr_aton" - "', argument " - "2" - " of type '" - "zts_ip_addr *" - "'"); - } - arg2 = reinterpret_cast(argp2); - result = (int)zts_ipaddr_aton((char const*)arg1, arg2); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_cache_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *arg2 = (void *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_cache_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_cache_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_event_msg_t_cache_set" "', argument " "2"" of type '" "void *""'"); + } + if (arg1) (arg1)->cache = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc1 == SWIG_NEWOBJ) - delete[] buf1; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_inet_ntop(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - void* arg2 = (void*)0; - char* arg3 = (char*)0; - zts_socklen_t arg4; - int val1; - int ecode1 = 0; - int res2; - int res3; - char* buf3 = 0; - int alloc3 = 0; - unsigned int val4; - int ecode4 = 0; - PyObject* swig_obj[4]; - char* result = 0; - if (! SWIG_Python_UnpackTuple(args, "zts_inet_ntop", 4, 4, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_inet_ntop" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_ConvertPtr(swig_obj[1], SWIG_as_voidptrptr(&arg2), 0, 0); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_inet_ntop" - "', argument " - "2" - " of type '" - "void const *" - "'"); - } - res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_inet_ntop" - "', argument " - "3" - " of type '" - "char *" - "'"); - } - arg3 = reinterpret_cast(buf3); - ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); - if (! SWIG_IsOK(ecode4)) { - SWIG_exception_fail( - SWIG_ArgError(ecode4), - "in method '" - "zts_inet_ntop" - "', argument " - "4" - " of type '" - "zts_socklen_t" - "'"); - } - arg4 = static_cast(val4); - result = (char*)zts_inet_ntop(arg1, (void const*)arg2, arg3, arg4); - resultobj = SWIG_FromCharPtr((const char*)result); - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_cache_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + void *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_cache_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (void *) ((arg1)->cache); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); + return resultobj; fail: - if (alloc3 == SWIG_NEWOBJ) - delete[] buf3; - return NULL; + return NULL; } -SWIGINTERN PyObject* _wrap_zts_inet_pton(PyObject* SWIGUNUSEDPARM(self), PyObject* args) -{ - PyObject* resultobj = 0; - int arg1; - char* arg2 = (char*)0; - void* arg3 = (void*)0; - int val1; - int ecode1 = 0; - int res2; - char* buf2 = 0; - int alloc2 = 0; - int res3; - PyObject* swig_obj[3]; - int result; - if (! SWIG_Python_UnpackTuple(args, "zts_inet_pton", 3, 3, swig_obj)) - SWIG_fail; - ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); - if (! SWIG_IsOK(ecode1)) { - SWIG_exception_fail( - SWIG_ArgError(ecode1), - "in method '" - "zts_inet_pton" - "', argument " - "1" - " of type '" - "int" - "'"); - } - arg1 = static_cast(val1); - res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); - if (! SWIG_IsOK(res2)) { - SWIG_exception_fail( - SWIG_ArgError(res2), - "in method '" - "zts_inet_pton" - "', argument " - "2" - " of type '" - "char const *" - "'"); - } - arg2 = reinterpret_cast(buf2); - res3 = SWIG_ConvertPtr(swig_obj[2], SWIG_as_voidptrptr(&arg3), 0, 0); - if (! SWIG_IsOK(res3)) { - SWIG_exception_fail( - SWIG_ArgError(res3), - "in method '" - "zts_inet_pton" - "', argument " - "3" - " of type '" - "void *" - "'"); - } - result = (int)zts_inet_pton(arg1, (char const*)arg2, arg3); - resultobj = SWIG_From_int(static_cast(result)); - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return resultobj; +SWIGINTERN PyObject *_wrap_zts_event_msg_t_len_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_event_msg_t_len_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_len_set" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_event_msg_t_len_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->len = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; fail: - if (alloc2 == SWIG_NEWOBJ) - delete[] buf2; - return NULL; + return NULL; } + +SWIGINTERN PyObject *_wrap_zts_event_msg_t_len_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_event_msg_t_len_get" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + result = (int) ((arg1)->len); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_event_msg_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_event_msg_t", 0, 0, 0)) SWIG_fail; + result = (zts_event_msg_t *)new zts_event_msg_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_event_msg_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_event_msg_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_event_msg_t *arg1 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_event_msg_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_event_msg_t" "', argument " "1"" of type '" "zts_event_msg_t *""'"); + } + arg1 = reinterpret_cast< zts_event_msg_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_event_msg_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_event_msg_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_event_msg_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_id_new(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int *arg2 = (unsigned int *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_id_new", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_id_new" "', argument " "1"" of type '" "char *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_id_new" "', argument " "2"" of type '" "unsigned int *""'"); + } + arg2 = reinterpret_cast< unsigned int * >(argp2); + result = (int)zts_id_new(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_id_pair_is_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_id_pair_is_valid", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_id_pair_is_valid" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_id_pair_is_valid" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_id_pair_is_valid((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_from_storage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_init_from_storage" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + result = (int)zts_init_from_storage((char const *)arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_from_memory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_init_from_memory", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_init_from_memory" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_init_from_memory" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_init_from_memory((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PythonDirectorCallbackClass_on_zerotier_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + PythonDirectorCallbackClass *arg1 = (PythonDirectorCallbackClass *) 0 ; + zts_event_msg_t *arg2 = (zts_event_msg_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + Swig::Director *director = 0; + bool upcall = false; + + if (!SWIG_Python_UnpackTuple(args, "PythonDirectorCallbackClass_on_zerotier_event", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PythonDirectorCallbackClass_on_zerotier_event" "', argument " "1"" of type '" "PythonDirectorCallbackClass *""'"); + } + arg1 = reinterpret_cast< PythonDirectorCallbackClass * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_event_msg_t, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PythonDirectorCallbackClass_on_zerotier_event" "', argument " "2"" of type '" "zts_event_msg_t *""'"); + } + arg2 = reinterpret_cast< zts_event_msg_t * >(argp2); + director = SWIG_DIRECTOR_CAST(arg1); + upcall = (director && (director->swig_get_self()==swig_obj[0])); + try { + if (upcall) { + (arg1)->PythonDirectorCallbackClass::on_zerotier_event(arg2); + } else { + (arg1)->on_zerotier_event(arg2); + } + } catch (Swig::DirectorException&) { + SWIG_fail; + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_PythonDirectorCallbackClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + PythonDirectorCallbackClass *arg1 = (PythonDirectorCallbackClass *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_PythonDirectorCallbackClass" "', argument " "1"" of type '" "PythonDirectorCallbackClass *""'"); + } + arg1 = reinterpret_cast< PythonDirectorCallbackClass * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_PythonDirectorCallbackClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + PyObject *arg1 = (PyObject *) 0 ; + PyObject *swig_obj[1] ; + PythonDirectorCallbackClass *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + arg1 = swig_obj[0]; + if ( arg1 != Py_None ) { + /* subclassed */ + result = (PythonDirectorCallbackClass *)new SwigDirector_PythonDirectorCallbackClass(arg1); + } else { + result = (PythonDirectorCallbackClass *)new PythonDirectorCallbackClass(); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_disown_PythonDirectorCallbackClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + PythonDirectorCallbackClass *arg1 = (PythonDirectorCallbackClass *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "disown_PythonDirectorCallbackClass" "', argument " "1"" of type '" "PythonDirectorCallbackClass *""'"); + } + arg1 = reinterpret_cast< PythonDirectorCallbackClass * >(argp1); + { + Swig::Director *director = SWIG_DIRECTOR_CAST(arg1); + if (director) director->swig_disown(); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *PythonDirectorCallbackClass_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_PythonDirectorCallbackClass, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *PythonDirectorCallbackClass_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN int Swig_var__userEventCallback_set(PyObject *_val) { + { + void *argp = 0; + int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_PythonDirectorCallbackClass, 0 ); + if (!SWIG_IsOK(res)) { + SWIG_exception_fail(SWIG_ArgError(res), "in variable '""_userEventCallback""' of type '""PythonDirectorCallbackClass *""'"); + } + _userEventCallback = reinterpret_cast< PythonDirectorCallbackClass * >(argp); + } + return 0; +fail: + return 1; +} + + +SWIGINTERN PyObject *Swig_var__userEventCallback_get(void) { + PyObject *pyobj = 0; + + pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(_userEventCallback), SWIGTYPE_p_PythonDirectorCallbackClass, 0 ); + return pyobj; +} + + +SWIGINTERN PyObject *_wrap_zts_init_set_event_handler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + PythonDirectorCallbackClass *arg1 = (PythonDirectorCallbackClass *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_PythonDirectorCallbackClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_init_set_event_handler" "', argument " "1"" of type '" "PythonDirectorCallbackClass *""'"); + } + arg1 = reinterpret_cast< PythonDirectorCallbackClass * >(argp1); + result = (int)zts_init_set_event_handler(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_blacklist_if(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_init_blacklist_if", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_init_blacklist_if" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_init_blacklist_if" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_init_blacklist_if((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_set_roots(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + void *arg1 = (void *) 0 ; + unsigned int arg2 ; + int res1 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_init_set_roots", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0],SWIG_as_voidptrptr(&arg1), 0, 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_init_set_roots" "', argument " "1"" of type '" "void const *""'"); + } + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_init_set_roots" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_init_set_roots((void const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_set_port(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned short arg1 ; + unsigned short val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_short(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_set_port" "', argument " "1"" of type '" "unsigned short""'"); + } + arg1 = static_cast< unsigned short >(val1); + result = (int)zts_init_set_port(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_set_random_port_range(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned short arg1 ; + unsigned short arg2 ; + unsigned short val1 ; + int ecode1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_init_set_random_port_range", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_short(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_set_random_port_range" "', argument " "1"" of type '" "unsigned short""'"); + } + arg1 = static_cast< unsigned short >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_init_set_random_port_range" "', argument " "2"" of type '" "unsigned short""'"); + } + arg2 = static_cast< unsigned short >(val2); + result = (int)zts_init_set_random_port_range(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_secondary_port(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_secondary_port" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_secondary_port(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_port_mapping(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_port_mapping" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_port_mapping(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_net_cache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_net_cache" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_net_cache(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_peer_cache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_peer_cache" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_peer_cache(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_roots_cache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_roots_cache" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_roots_cache(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_init_allow_id_cache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned int arg1 ; + unsigned int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_init_allow_id_cache" "', argument " "1"" of type '" "unsigned int""'"); + } + arg1 = static_cast< unsigned int >(val1); + result = (int)zts_init_allow_id_cache(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_is_assigned(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_is_assigned", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_is_assigned" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_is_assigned" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_addr_is_assigned(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + zts_sockaddr_storage *arg3 = (zts_sockaddr_storage *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_get", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_get" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_get" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_get" "', argument " "3"" of type '" "zts_sockaddr_storage *""'"); + } + arg3 = reinterpret_cast< zts_sockaddr_storage * >(argp3); + result = (int)zts_addr_get(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_get_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + char *arg3 = (char *) 0 ; + unsigned int arg4 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_get_str", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_get_str" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_get_str" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_get_str" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_addr_get_str" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = static_cast< unsigned int >(val4); + result = (int)zts_addr_get_str(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_get_all(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + zts_sockaddr_storage *arg2 = (zts_sockaddr_storage *) 0 ; + unsigned int *arg3 = (unsigned int *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_get_all", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_get_all" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_addr_get_all" "', argument " "2"" of type '" "zts_sockaddr_storage *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr_storage * >(argp2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_get_all" "', argument " "3"" of type '" "unsigned int *""'"); + } + arg3 = reinterpret_cast< unsigned int * >(argp3); + result = (int)zts_addr_get_all(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_compute_6plane(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + uint64_t arg2 ; + zts_sockaddr_storage *arg3 = (zts_sockaddr_storage *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_compute_6plane", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_compute_6plane" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_compute_6plane" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_compute_6plane" "', argument " "3"" of type '" "zts_sockaddr_storage *""'"); + } + arg3 = reinterpret_cast< zts_sockaddr_storage * >(argp3); + result = (int)zts_addr_compute_6plane(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_compute_rfc4193(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + uint64_t arg2 ; + zts_sockaddr_storage *arg3 = (zts_sockaddr_storage *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_compute_rfc4193", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_compute_rfc4193" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_compute_rfc4193" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_zts_sockaddr_storage, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_compute_rfc4193" "', argument " "3"" of type '" "zts_sockaddr_storage *""'"); + } + arg3 = reinterpret_cast< zts_sockaddr_storage * >(argp3); + result = (int)zts_addr_compute_rfc4193(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_compute_rfc4193_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + uint64_t arg2 ; + char *arg3 = (char *) 0 ; + unsigned int arg4 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_compute_rfc4193_str", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_compute_rfc4193_str" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_compute_rfc4193_str" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_compute_rfc4193_str" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_addr_compute_rfc4193_str" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = static_cast< unsigned int >(val4); + result = (int)zts_addr_compute_rfc4193_str(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_addr_compute_6plane_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + uint64_t arg2 ; + char *arg3 = (char *) 0 ; + unsigned int arg4 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_addr_compute_6plane_str", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_addr_compute_6plane_str" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_addr_compute_6plane_str" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_addr_compute_6plane_str" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_addr_compute_6plane_str" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = static_cast< unsigned int >(val4); + result = (int)zts_addr_compute_6plane_str(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_compute_adhoc_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint16_t arg1 ; + uint16_t arg2 ; + unsigned short val1 ; + int ecode1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + uint64_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_compute_adhoc_id", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_short(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_compute_adhoc_id" "', argument " "1"" of type '" "uint16_t""'"); + } + arg1 = static_cast< uint16_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_net_compute_adhoc_id" "', argument " "2"" of type '" "uint16_t""'"); + } + arg2 = static_cast< uint16_t >(val2); + result = (uint64_t)zts_net_compute_adhoc_id(arg1,arg2); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_join(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_join" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_join(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_leave(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_leave" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_leave(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_transport_is_ready(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_transport_is_ready" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_transport_is_ready(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_mac(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + uint64_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_mac" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (uint64_t)zts_net_get_mac(arg1); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_mac_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + char *arg2 = (char *) 0 ; + unsigned int arg3 ; + unsigned long long val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_get_mac_str", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_mac_str" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_net_get_mac_str" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_net_get_mac_str" "', argument " "3"" of type '" "unsigned int""'"); + } + arg3 = static_cast< unsigned int >(val3); + result = (int)zts_net_get_mac_str(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_broadcast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_broadcast" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_get_broadcast(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_mtu(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_mtu" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_get_mtu(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + char *arg2 = (char *) 0 ; + unsigned int arg3 ; + unsigned long long val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_net_get_name", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_name" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_net_get_name" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_net_get_name" "', argument " "3"" of type '" "unsigned int""'"); + } + arg3 = static_cast< unsigned int >(val3); + result = (int)zts_net_get_name(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_status(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_status" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_get_status(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_net_get_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_net_get_type" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_net_get_type(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_route_is_assigned(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_route_is_assigned", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_route_is_assigned" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_route_is_assigned" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + result = (int)zts_route_is_assigned(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_start(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_start", 0, 0, 0)) SWIG_fail; + result = (int)zts_node_start(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_is_online(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_is_online", 0, 0, 0)) SWIG_fail; + result = (int)zts_node_is_online(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_get_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_get_id", 0, 0, 0)) SWIG_fail; + result = (uint64_t)zts_node_get_id(); + resultobj = SWIG_From_unsigned_SS_long_SS_long(static_cast< unsigned long long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_get_id_pair(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int *arg2 = (unsigned int *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_get_id_pair", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_node_get_id_pair" "', argument " "1"" of type '" "char *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_node_get_id_pair" "', argument " "2"" of type '" "unsigned int *""'"); + } + arg2 = reinterpret_cast< unsigned int * >(argp2); + result = (int)zts_node_get_id_pair(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_get_port(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_get_port", 0, 0, 0)) SWIG_fail; + result = (int)zts_node_get_port(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_stop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_stop", 0, 0, 0)) SWIG_fail; + result = (int)zts_node_stop(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_node_free(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_node_free", 0, 0, 0)) SWIG_fail; + result = (int)zts_node_free(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_moon_orbit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + uint64_t arg2 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned long long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_moon_orbit", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_moon_orbit" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_moon_orbit" "', argument " "2"" of type '" "uint64_t""'"); + } + arg2 = static_cast< uint64_t >(val2); + result = (int)zts_moon_orbit(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_moon_deorbit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_moon_deorbit" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_moon_deorbit(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_link_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->link_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->link_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_link_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->link_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->link_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_link_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->link_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->link_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_link_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_link_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->link_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_link_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_link_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->link_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_etharp_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->etharp_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->etharp_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_etharp_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->etharp_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->etharp_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_etharp_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->etharp_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->etharp_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_etharp_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_etharp_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->etharp_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_etharp_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_etharp_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->etharp_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip4_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip4_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip4_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip4_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip4_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip4_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip4_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip4_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip4_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip4_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip4_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip4_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip4_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip4_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip4_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip6_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip6_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip6_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip6_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip6_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip6_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip6_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip6_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip6_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_ip6_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_ip6_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->ip6_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_ip6_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_ip6_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->ip6_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp4_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp4_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp4_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp4_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp4_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp4_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp4_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp4_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp4_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp4_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp4_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp4_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp4_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp4_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp4_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp6_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp6_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp6_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp6_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp6_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp6_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp6_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp6_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp6_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_icmp6_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_icmp6_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->icmp6_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_icmp6_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_icmp6_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->icmp6_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_udp_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->udp_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->udp_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_udp_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->udp_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->udp_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_udp_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->udp_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->udp_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_udp_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_udp_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->udp_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_udp_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_udp_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->udp_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_tcp_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->tcp_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->tcp_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_tcp_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->tcp_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->tcp_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_tcp_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->tcp_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->tcp_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_tcp_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_tcp_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->tcp_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_tcp_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_tcp_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->tcp_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_tx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_tx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_tx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_nd6_tx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->nd6_tx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_tx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_tx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->nd6_tx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_rx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_rx_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_rx_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_nd6_rx_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->nd6_rx = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_rx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_rx_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->nd6_rx); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_drop_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_drop_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_drop_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_nd6_drop_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->nd6_drop = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_drop_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_drop_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->nd6_drop); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_stats_counter_t_nd6_err_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_err_set" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_stats_counter_t_nd6_err_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->nd6_err = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_stats_counter_t_nd6_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_counter_t_nd6_err_get" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (uint32_t) ((arg1)->nd6_err); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_stats_counter_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_stats_counter_t", 0, 0, 0)) SWIG_fail; + result = (zts_stats_counter_t *)new zts_stats_counter_t(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_stats_counter_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_stats_counter_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_stats_counter_t" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_stats_counter_t_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_stats_counter_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_stats_counter_t_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_stats_get_all(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_stats_counter_t *arg1 = (zts_stats_counter_t *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_stats_counter_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_stats_get_all" "', argument " "1"" of type '" "zts_stats_counter_t *""'"); + } + arg1 = reinterpret_cast< zts_stats_counter_t * >(argp1); + result = (int)zts_stats_get_all(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_socket(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_socket", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_socket" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_socket" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_socket" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_bsd_socket(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_sockaddr *arg2 = (zts_sockaddr *) 0 ; + zts_socklen_t arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_connect", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_connect" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_connect" "', argument " "2"" of type '" "zts_sockaddr const *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr * >(argp2); + ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_connect" "', argument " "3"" of type '" "zts_socklen_t""'"); + } + arg3 = static_cast< zts_socklen_t >(val3); + result = (int)zts_bsd_connect(arg1,(zts_sockaddr const *)arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_bind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_sockaddr *arg2 = (zts_sockaddr *) 0 ; + zts_socklen_t arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + unsigned int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_bind", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_bind" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_bind" "', argument " "2"" of type '" "zts_sockaddr const *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr * >(argp2); + ecode3 = SWIG_AsVal_unsigned_SS_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_bind" "', argument " "3"" of type '" "zts_socklen_t""'"); + } + arg3 = static_cast< zts_socklen_t >(val3); + result = (int)zts_bsd_bind(arg1,(zts_sockaddr const *)arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_listen(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_listen", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_listen" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_listen" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_bsd_listen(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_accept(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_sockaddr *arg2 = (zts_sockaddr *) 0 ; + zts_socklen_t *arg3 = (zts_socklen_t *) 0 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_accept", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_accept" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_accept" "', argument " "2"" of type '" "zts_sockaddr *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr * >(argp2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_bsd_accept" "', argument " "3"" of type '" "zts_socklen_t *""'"); + } + arg3 = reinterpret_cast< zts_socklen_t * >(argp3); + result = (int)zts_bsd_accept(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_setsockopt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + void *arg4 = (void *) 0 ; + zts_socklen_t arg5 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + int res4 ; + unsigned int val5 ; + int ecode5 = 0 ; + PyObject *swig_obj[5] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_setsockopt", 5, 5, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_setsockopt" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_setsockopt" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_setsockopt" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(swig_obj[3],SWIG_as_voidptrptr(&arg4), 0, 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_bsd_setsockopt" "', argument " "4"" of type '" "void const *""'"); + } + ecode5 = SWIG_AsVal_unsigned_SS_int(swig_obj[4], &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "zts_bsd_setsockopt" "', argument " "5"" of type '" "zts_socklen_t""'"); + } + arg5 = static_cast< zts_socklen_t >(val5); + result = (int)zts_bsd_setsockopt(arg1,arg2,arg3,(void const *)arg4,arg5); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_getsockopt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + void *arg4 = (void *) 0 ; + zts_socklen_t *arg5 = (zts_socklen_t *) 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + int res4 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject *swig_obj[5] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_getsockopt", 5, 5, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_getsockopt" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_getsockopt" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_getsockopt" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(swig_obj[3],SWIG_as_voidptrptr(&arg4), 0, 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_bsd_getsockopt" "', argument " "4"" of type '" "void *""'"); + } + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_bsd_getsockopt" "', argument " "5"" of type '" "zts_socklen_t *""'"); + } + arg5 = reinterpret_cast< zts_socklen_t * >(argp5); + result = (int)zts_bsd_getsockopt(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_getsockname(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_sockaddr *arg2 = (zts_sockaddr *) 0 ; + zts_socklen_t *arg3 = (zts_socklen_t *) 0 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_getsockname", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_getsockname" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_getsockname" "', argument " "2"" of type '" "zts_sockaddr *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr * >(argp2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_bsd_getsockname" "', argument " "3"" of type '" "zts_socklen_t *""'"); + } + arg3 = reinterpret_cast< zts_socklen_t * >(argp3); + result = (int)zts_bsd_getsockname(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_getpeername(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_sockaddr *arg2 = (zts_sockaddr *) 0 ; + zts_socklen_t *arg3 = (zts_socklen_t *) 0 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_getpeername", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_getpeername" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_getpeername" "', argument " "2"" of type '" "zts_sockaddr *""'"); + } + arg2 = reinterpret_cast< zts_sockaddr * >(argp2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_bsd_getpeername" "', argument " "3"" of type '" "zts_socklen_t *""'"); + } + arg3 = reinterpret_cast< zts_socklen_t * >(argp3); + result = (int)zts_bsd_getpeername(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_close(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_close" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_bsd_close(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_timeval_tv_sec_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *arg1 = (zts_timeval *) 0 ; + long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_timeval_tv_sec_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_timeval, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_timeval_tv_sec_set" "', argument " "1"" of type '" "zts_timeval *""'"); + } + arg1 = reinterpret_cast< zts_timeval * >(argp1); + ecode2 = SWIG_AsVal_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_timeval_tv_sec_set" "', argument " "2"" of type '" "long""'"); + } + arg2 = static_cast< long >(val2); + if (arg1) (arg1)->tv_sec = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_timeval_tv_sec_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *arg1 = (zts_timeval *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + long result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_timeval, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_timeval_tv_sec_get" "', argument " "1"" of type '" "zts_timeval *""'"); + } + arg1 = reinterpret_cast< zts_timeval * >(argp1); + result = (long) ((arg1)->tv_sec); + resultobj = SWIG_From_long(static_cast< long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_timeval_tv_usec_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *arg1 = (zts_timeval *) 0 ; + long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_timeval_tv_usec_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_timeval, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_timeval_tv_usec_set" "', argument " "1"" of type '" "zts_timeval *""'"); + } + arg1 = reinterpret_cast< zts_timeval * >(argp1); + ecode2 = SWIG_AsVal_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_timeval_tv_usec_set" "', argument " "2"" of type '" "long""'"); + } + arg2 = static_cast< long >(val2); + if (arg1) (arg1)->tv_usec = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_timeval_tv_usec_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *arg1 = (zts_timeval *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + long result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_timeval, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_timeval_tv_usec_get" "', argument " "1"" of type '" "zts_timeval *""'"); + } + arg1 = reinterpret_cast< zts_timeval * >(argp1); + result = (long) ((arg1)->tv_usec); + resultobj = SWIG_From_long(static_cast< long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_timeval(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_timeval", 0, 0, 0)) SWIG_fail; + result = (zts_timeval *)new zts_timeval(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_timeval, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_timeval(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_timeval *arg1 = (zts_timeval *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_timeval, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_timeval" "', argument " "1"" of type '" "zts_timeval *""'"); + } + arg1 = reinterpret_cast< zts_timeval * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_timeval_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_timeval, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_timeval_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_bsd_select(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_fd_set *arg2 = (zts_fd_set *) 0 ; + zts_fd_set *arg3 = (zts_fd_set *) 0 ; + zts_fd_set *arg4 = (zts_fd_set *) 0 ; + zts_timeval *arg5 = (zts_timeval *) 0 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject *swig_obj[5] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_select", 5, 5, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_select" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_fd_set, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_select" "', argument " "2"" of type '" "zts_fd_set *""'"); + } + arg2 = reinterpret_cast< zts_fd_set * >(argp2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_zts_fd_set, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_bsd_select" "', argument " "3"" of type '" "zts_fd_set *""'"); + } + arg3 = reinterpret_cast< zts_fd_set * >(argp3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_zts_fd_set, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_bsd_select" "', argument " "4"" of type '" "zts_fd_set *""'"); + } + arg4 = reinterpret_cast< zts_fd_set * >(argp4); + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_zts_timeval, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_bsd_select" "', argument " "5"" of type '" "zts_timeval *""'"); + } + arg5 = reinterpret_cast< zts_timeval * >(argp5); + result = (int)zts_bsd_select(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_fcntl(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_fcntl", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_fcntl" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_fcntl" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_fcntl" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_bsd_fcntl(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_poll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_pollfd *arg1 = (zts_pollfd *) 0 ; + zts_nfds_t arg2 ; + int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_poll", 3, 3, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_pollfd, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_bsd_poll" "', argument " "1"" of type '" "zts_pollfd *""'"); + } + arg1 = reinterpret_cast< zts_pollfd * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_poll" "', argument " "2"" of type '" "zts_nfds_t""'"); + } + arg2 = static_cast< zts_nfds_t >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_poll" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_bsd_poll(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_ioctl(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + unsigned long arg2 ; + void *arg3 = (void *) 0 ; + int val1 ; + int ecode1 = 0 ; + unsigned long val2 ; + int ecode2 = 0 ; + int res3 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_ioctl", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_ioctl" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_long(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_ioctl" "', argument " "2"" of type '" "unsigned long""'"); + } + arg2 = static_cast< unsigned long >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2],SWIG_as_voidptrptr(&arg3), 0, 0); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_bsd_ioctl" "', argument " "3"" of type '" "void *""'"); + } + result = (int)zts_bsd_ioctl(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_send(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_send", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_send" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_send" "', argument " "2"" of type '" "void const *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_send" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_bsd_send" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + result = zts_bsd_send(arg1,(void const *)arg2,arg3,arg4); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_sendto(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + zts_sockaddr *arg5 = (zts_sockaddr *) 0 ; + zts_socklen_t arg6 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + unsigned int val6 ; + int ecode6 = 0 ; + PyObject *swig_obj[6] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_sendto", 6, 6, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_sendto" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_sendto" "', argument " "2"" of type '" "void const *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_sendto" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_bsd_sendto" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_bsd_sendto" "', argument " "5"" of type '" "zts_sockaddr const *""'"); + } + arg5 = reinterpret_cast< zts_sockaddr * >(argp5); + ecode6 = SWIG_AsVal_unsigned_SS_int(swig_obj[5], &val6); + if (!SWIG_IsOK(ecode6)) { + SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "zts_bsd_sendto" "', argument " "6"" of type '" "zts_socklen_t""'"); + } + arg6 = static_cast< zts_socklen_t >(val6); + result = zts_bsd_sendto(arg1,(void const *)arg2,arg3,arg4,(zts_sockaddr const *)arg5,arg6); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_iovec_iov_base_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *arg1 = (zts_iovec *) 0 ; + void *arg2 = (void *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_iovec_iov_base_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_iovec_iov_base_set" "', argument " "1"" of type '" "zts_iovec *""'"); + } + arg1 = reinterpret_cast< zts_iovec * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_iovec_iov_base_set" "', argument " "2"" of type '" "void *""'"); + } + if (arg1) (arg1)->iov_base = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_iovec_iov_base_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *arg1 = (zts_iovec *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + void *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_iovec_iov_base_get" "', argument " "1"" of type '" "zts_iovec *""'"); + } + arg1 = reinterpret_cast< zts_iovec * >(argp1); + result = (void *) ((arg1)->iov_base); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_iovec_iov_len_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *arg1 = (zts_iovec *) 0 ; + size_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_iovec_iov_len_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_iovec_iov_len_set" "', argument " "1"" of type '" "zts_iovec *""'"); + } + arg1 = reinterpret_cast< zts_iovec * >(argp1); + ecode2 = SWIG_AsVal_size_t(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_iovec_iov_len_set" "', argument " "2"" of type '" "size_t""'"); + } + arg2 = static_cast< size_t >(val2); + if (arg1) (arg1)->iov_len = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_iovec_iov_len_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *arg1 = (zts_iovec *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + size_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_iovec_iov_len_get" "', argument " "1"" of type '" "zts_iovec *""'"); + } + arg1 = reinterpret_cast< zts_iovec * >(argp1); + result = ((arg1)->iov_len); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_iovec(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_iovec", 0, 0, 0)) SWIG_fail; + result = (zts_iovec *)new zts_iovec(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_iovec, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_iovec(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_iovec *arg1 = (zts_iovec *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_iovec, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_iovec" "', argument " "1"" of type '" "zts_iovec *""'"); + } + arg1 = reinterpret_cast< zts_iovec * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_iovec_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_iovec, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_iovec_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_bsd_sendmsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_msghdr *arg2 = (zts_msghdr *) 0 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_sendmsg", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_sendmsg" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_msghdr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_sendmsg" "', argument " "2"" of type '" "zts_msghdr const *""'"); + } + arg2 = reinterpret_cast< zts_msghdr * >(argp2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_sendmsg" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = zts_bsd_sendmsg(arg1,(zts_msghdr const *)arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_recv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_recv", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_recv" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_recv" "', argument " "2"" of type '" "void *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_recv" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_bsd_recv" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + result = zts_bsd_recv(arg1,arg2,arg3,arg4); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_recvfrom(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + zts_sockaddr *arg5 = (zts_sockaddr *) 0 ; + zts_socklen_t *arg6 = (zts_socklen_t *) 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + void *argp6 = 0 ; + int res6 = 0 ; + PyObject *swig_obj[6] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_recvfrom", 6, 6, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_recvfrom" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_recvfrom" "', argument " "2"" of type '" "void *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_recvfrom" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_bsd_recvfrom" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_bsd_recvfrom" "', argument " "5"" of type '" "zts_sockaddr *""'"); + } + arg5 = reinterpret_cast< zts_sockaddr * >(argp5); + res6 = SWIG_ConvertPtr(swig_obj[5], &argp6,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res6)) { + SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "zts_bsd_recvfrom" "', argument " "6"" of type '" "zts_socklen_t *""'"); + } + arg6 = reinterpret_cast< zts_socklen_t * >(argp6); + result = zts_bsd_recvfrom(arg1,arg2,arg3,arg4,arg5,arg6); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_recvmsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_msghdr *arg2 = (zts_msghdr *) 0 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_recvmsg", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_recvmsg" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_msghdr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_recvmsg" "', argument " "2"" of type '" "zts_msghdr *""'"); + } + arg2 = reinterpret_cast< zts_msghdr * >(argp2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_recvmsg" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = zts_bsd_recvmsg(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_read", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_read" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_read" "', argument " "2"" of type '" "void *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_read" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + result = zts_bsd_read(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_readv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_iovec *arg2 = (zts_iovec *) 0 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_readv", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_readv" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_readv" "', argument " "2"" of type '" "zts_iovec const *""'"); + } + arg2 = reinterpret_cast< zts_iovec * >(argp2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_readv" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = zts_bsd_readv(arg1,(zts_iovec const *)arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_write", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_write" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_write" "', argument " "2"" of type '" "void const *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_write" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + result = zts_bsd_write(arg1,(void const *)arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_writev(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + zts_iovec *arg2 = (zts_iovec *) 0 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_writev", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_writev" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_iovec, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bsd_writev" "', argument " "2"" of type '" "zts_iovec const *""'"); + } + arg2 = reinterpret_cast< zts_iovec * >(argp2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bsd_writev" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = zts_bsd_writev(arg1,(zts_iovec const *)arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bsd_shutdown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bsd_shutdown", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bsd_shutdown" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_bsd_shutdown" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_bsd_shutdown(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_socket(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_socket", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_socket" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_socket" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_socket" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_socket(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + unsigned short arg3 ; + int arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + unsigned short val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_connect", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_connect" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_connect" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_unsigned_SS_short(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_connect" "', argument " "3"" of type '" "unsigned short""'"); + } + arg3 = static_cast< unsigned short >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_connect" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + result = (int)zts_connect(arg1,(char const *)arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_bind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + unsigned short arg3 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + unsigned short val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_bind", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_bind" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_bind" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_unsigned_SS_short(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_bind" "', argument " "3"" of type '" "unsigned short""'"); + } + arg3 = static_cast< unsigned short >(val3); + result = (int)zts_bind(arg1,(char const *)arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_listen(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_listen", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_listen" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_listen" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_listen(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_accept(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + int arg3 ; + unsigned short *arg4 = (unsigned short *) 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_accept", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_accept" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_accept" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_accept" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_accept" "', argument " "4"" of type '" "unsigned short *""'"); + } + arg4 = reinterpret_cast< unsigned short * >(argp4); + result = (int)zts_accept(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_send(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_send", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_send" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_send" "', argument " "2"" of type '" "void const *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_send" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_send" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + result = zts_send(arg1,(void const *)arg2,arg3,arg4); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_recv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_recv", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_recv" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_recv" "', argument " "2"" of type '" "void *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_recv" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_recv" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + result = zts_recv(arg1,arg2,arg3,arg4); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_read", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_read" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_read" "', argument " "2"" of type '" "void *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_read" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + result = zts_read(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + size_t arg3 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + ssize_t result; + + if (!SWIG_Python_UnpackTuple(args, "zts_write", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_write" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_write" "', argument " "2"" of type '" "void const *""'"); + } + ecode3 = SWIG_AsVal_size_t(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_write" "', argument " "3"" of type '" "size_t""'"); + } + arg3 = static_cast< size_t >(val3); + result = zts_write(arg1,(void const *)arg2,arg3); + resultobj = SWIG_NewPointerObj((new ssize_t(static_cast< const ssize_t& >(result))), SWIGTYPE_p_ssize_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_shutdown_rd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_shutdown_rd" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_shutdown_rd(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_shutdown_wr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_shutdown_wr" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_shutdown_wr(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_shutdown_rdwr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_shutdown_rdwr" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_shutdown_rdwr(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_close(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_close" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_close(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_getpeername(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + int arg3 ; + unsigned short *arg4 = (unsigned short *) 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_getpeername", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_getpeername" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_getpeername" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_getpeername" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_getpeername" "', argument " "4"" of type '" "unsigned short *""'"); + } + arg4 = reinterpret_cast< unsigned short * >(argp4); + result = (int)zts_getpeername(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_getsockname(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + int arg3 ; + unsigned short *arg4 = (unsigned short *) 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_getsockname", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_getsockname" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_getsockname" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_getsockname" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_getsockname" "', argument " "4"" of type '" "unsigned short *""'"); + } + arg4 = reinterpret_cast< unsigned short * >(argp4); + result = (int)zts_getsockname(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_tcp_client(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned short arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_tcp_client", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_tcp_client" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_tcp_client" "', argument " "2"" of type '" "unsigned short""'"); + } + arg2 = static_cast< unsigned short >(val2); + result = (int)zts_tcp_client((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_tcp_server(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned short arg2 ; + char *arg3 = (char *) 0 ; + int arg4 ; + unsigned short *arg5 = (unsigned short *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject *swig_obj[5] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_tcp_server", 5, 5, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_tcp_server" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_tcp_server" "', argument " "2"" of type '" "unsigned short""'"); + } + arg2 = static_cast< unsigned short >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_tcp_server" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_tcp_server" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_tcp_server" "', argument " "5"" of type '" "unsigned short *""'"); + } + arg5 = reinterpret_cast< unsigned short * >(argp5); + result = (int)zts_tcp_server((char const *)arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_udp_server(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned short arg2 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_udp_server", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_udp_server" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_udp_server" "', argument " "2"" of type '" "unsigned short""'"); + } + arg2 = static_cast< unsigned short >(val2); + result = (int)zts_udp_server((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_udp_client(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_udp_client" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + result = (int)zts_udp_client((char const *)arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_no_delay(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_no_delay", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_no_delay" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_no_delay" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_no_delay(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_last_socket_error(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_last_socket_error" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_last_socket_error(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_data_available(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + size_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_data_available" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = zts_get_data_available(arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_no_delay(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_no_delay" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_no_delay(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_linger(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_linger", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_linger" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_linger" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_set_linger" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_set_linger(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_linger_enabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_linger_enabled" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_linger_enabled(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_linger_value(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_linger_value" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_linger_value(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_pending_data_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_pending_data_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_pending_data_size(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_reuse_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_reuse_addr", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_reuse_addr" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_reuse_addr" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_reuse_addr(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_reuse_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_reuse_addr" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_reuse_addr(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_recv_timeout(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_recv_timeout", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_recv_timeout" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_recv_timeout" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_set_recv_timeout" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_set_recv_timeout(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_recv_timeout(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_recv_timeout" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_recv_timeout(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_send_timeout(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_send_timeout", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_send_timeout" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_send_timeout" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_set_send_timeout" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_set_send_timeout(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_send_timeout(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_send_timeout" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_send_timeout(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_send_buf_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_send_buf_size", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_send_buf_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_send_buf_size" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_send_buf_size(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_send_buf_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_send_buf_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_send_buf_size(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_recv_buf_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_recv_buf_size", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_recv_buf_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_recv_buf_size" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_recv_buf_size(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_recv_buf_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_recv_buf_size" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_recv_buf_size(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_ttl(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_ttl", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_ttl" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_ttl" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_ttl(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_ttl(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_ttl" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_ttl(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_blocking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_blocking", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_blocking" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_blocking" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_blocking(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_blocking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_blocking" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_blocking(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_set_keepalive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_set_keepalive", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_set_keepalive" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_set_keepalive" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_set_keepalive(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_get_keepalive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_get_keepalive" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_get_keepalive(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + char *arg2 = (char *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_hostent_h_name_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_name_set" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_hostent_h_name_set" "', argument " "2"" of type '" "char *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + if (arg1->h_name) delete[] arg1->h_name; + if (arg2) { + size_t size = strlen(reinterpret_cast< const char * >(arg2)) + 1; + arg1->h_name = (char *)reinterpret_cast< char* >(memcpy(new char[size], reinterpret_cast< const char * >(arg2), sizeof(char)*(size))); + } else { + arg1->h_name = 0; + } + resultobj = SWIG_Py_Void(); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_name_get" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + result = (char *) ((arg1)->h_name); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_aliases_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_hostent_h_aliases_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_aliases_set" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_hostent_h_aliases_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = reinterpret_cast< char ** >(argp2); + if (arg1) (arg1)->h_aliases = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_aliases_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char **result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_aliases_get" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + result = (char **) ((arg1)->h_aliases); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_addrtype_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_hostent_h_addrtype_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_addrtype_set" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_hostent_h_addrtype_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->h_addrtype = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_addrtype_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_addrtype_get" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + result = (int) ((arg1)->h_addrtype); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_length_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_hostent_h_length_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_length_set" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_hostent_h_length_set" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + if (arg1) (arg1)->h_length = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_length_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_length_get" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + result = (int) ((arg1)->h_length); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_addr_list_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + char **arg2 = (char **) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_hostent_h_addr_list_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_addr_list_set" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_p_char, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_hostent_h_addr_list_set" "', argument " "2"" of type '" "char **""'"); + } + arg2 = reinterpret_cast< char ** >(argp2); + if (arg1) (arg1)->h_addr_list = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_hostent_h_addr_list_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char **result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_hostent_h_addr_list_get" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + result = (char **) ((arg1)->h_addr_list); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_hostent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_hostent", 0, 0, 0)) SWIG_fail; + result = (zts_hostent *)new zts_hostent(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_hostent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_hostent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_hostent *arg1 = (zts_hostent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_hostent, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_hostent" "', argument " "1"" of type '" "zts_hostent *""'"); + } + arg1 = reinterpret_cast< zts_hostent * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_hostent_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_hostent, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_hostent_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_bsd_gethostbyname(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject *swig_obj[1] ; + zts_hostent *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_bsd_gethostbyname" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + result = (zts_hostent *)zts_bsd_gethostbyname((char const *)arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_hostent, 0 | 0 ); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ip4_addr_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip4_addr *arg1 = (zts_ip4_addr *) 0 ; + uint32_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_ip4_addr_addr_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip4_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip4_addr_addr_set" "', argument " "1"" of type '" "zts_ip4_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip4_addr * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_ip4_addr_addr_set" "', argument " "2"" of type '" "uint32_t""'"); + } + arg2 = static_cast< uint32_t >(val2); + if (arg1) (arg1)->addr = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ip4_addr_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip4_addr *arg1 = (zts_ip4_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip4_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip4_addr_addr_get" "', argument " "1"" of type '" "zts_ip4_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip4_addr * >(argp1); + result = (uint32_t) ((arg1)->addr); + resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_ip4_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip4_addr *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_ip4_addr", 0, 0, 0)) SWIG_fail; + result = (zts_ip4_addr *)new zts_ip4_addr(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip4_addr, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_ip4_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip4_addr *arg1 = (zts_ip4_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip4_addr, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_ip4_addr" "', argument " "1"" of type '" "zts_ip4_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip4_addr * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_ip4_addr_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip4_addr, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_ip4_addr_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_ip6_addr_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip6_addr *arg1 = (zts_ip6_addr *) 0 ; + uint32_t *arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_ip6_addr_addr_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip6_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip6_addr_addr_set" "', argument " "1"" of type '" "zts_ip6_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip6_addr * >(argp1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_ip6_addr_addr_set" "', argument " "2"" of type '" "uint32_t [4]""'"); + } + arg2 = reinterpret_cast< uint32_t * >(argp2); + { + if (arg2) { + size_t ii = 0; + for (; ii < (size_t)4; ++ii) *(uint32_t *)&arg1->addr[ii] = *((uint32_t *)arg2 + ii); + } else { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""addr""' of type '""uint32_t [4]""'"); + } + } + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ip6_addr_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip6_addr *arg1 = (zts_ip6_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint32_t *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip6_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip6_addr_addr_get" "', argument " "1"" of type '" "zts_ip6_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip6_addr * >(argp1); + result = (uint32_t *)(uint32_t *) ((arg1)->addr); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_int, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_ip6_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip6_addr *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_ip6_addr", 0, 0, 0)) SWIG_fail; + result = (zts_ip6_addr *)new zts_ip6_addr(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip6_addr, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_ip6_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip6_addr *arg1 = (zts_ip6_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip6_addr, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_ip6_addr" "', argument " "1"" of type '" "zts_ip6_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip6_addr * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_ip6_addr_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip6_addr, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_ip6_addr_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_ip_addr_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip_addr *arg1 = (zts_ip_addr *) 0 ; + uint8_t arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned char val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + + if (!SWIG_Python_UnpackTuple(args, "zts_ip_addr_type_set", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip_addr_type_set" "', argument " "1"" of type '" "zts_ip_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip_addr * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_char(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_ip_addr_type_set" "', argument " "2"" of type '" "uint8_t""'"); + } + arg2 = static_cast< uint8_t >(val2); + if (arg1) (arg1)->type = arg2; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ip_addr_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip_addr *arg1 = (zts_ip_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + uint8_t result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ip_addr_type_get" "', argument " "1"" of type '" "zts_ip_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip_addr * >(argp1); + result = (uint8_t) ((arg1)->type); + resultobj = SWIG_From_unsigned_SS_char(static_cast< unsigned char >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_zts_ip_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip_addr *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "new_zts_ip_addr", 0, 0, 0)) SWIG_fail; + result = (zts_ip_addr *)new zts_ip_addr(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip_addr, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_zts_ip_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip_addr *arg1 = (zts_ip_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip_addr, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_zts_ip_addr" "', argument " "1"" of type '" "zts_ip_addr *""'"); + } + arg1 = reinterpret_cast< zts_ip_addr * >(argp1); + delete arg1; + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *zts_ip_addr_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!SWIG_Python_UnpackTuple(args, "swigregister", 1, 1, &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_zts_ip_addr, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *zts_ip_addr_swiginit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + return SWIG_Python_InitShadowInstance(args); +} + +SWIGINTERN PyObject *_wrap_zts_dns_set_server(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint8_t arg1 ; + zts_ip_addr *arg2 = (zts_ip_addr *) 0 ; + unsigned char val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_dns_set_server", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_char(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_dns_set_server" "', argument " "1"" of type '" "uint8_t""'"); + } + arg1 = static_cast< uint8_t >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_dns_set_server" "', argument " "2"" of type '" "zts_ip_addr const *""'"); + } + arg2 = reinterpret_cast< zts_ip_addr * >(argp2); + result = (int)zts_dns_set_server(arg1,(zts_ip_addr const *)arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_dns_get_server(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint8_t arg1 ; + unsigned char val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + zts_ip_addr *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_char(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_dns_get_server" "', argument " "1"" of type '" "uint8_t""'"); + } + arg1 = static_cast< uint8_t >(val1); + result = (zts_ip_addr *)zts_dns_get_server(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_lock_obtain(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_lock_obtain", 0, 0, 0)) SWIG_fail; + result = (int)zts_core_lock_obtain(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_lock_release(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_lock_release", 0, 0, 0)) SWIG_fail; + result = (int)zts_core_lock_release(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_addr_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_addr_count" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_core_query_addr_count(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_addr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + char *arg3 = (char *) 0 ; + unsigned int arg4 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_query_addr", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_addr" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_core_query_addr" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_core_query_addr" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_core_query_addr" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = static_cast< unsigned int >(val4); + result = (int)zts_core_query_addr(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_route_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_route_count" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_core_query_route_count(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_route(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + char *arg3 = (char *) 0 ; + char *arg4 = (char *) 0 ; + unsigned int arg5 ; + uint16_t *arg6 = (uint16_t *) 0 ; + uint16_t *arg7 = (uint16_t *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + int res4 ; + char *buf4 = 0 ; + int alloc4 = 0 ; + unsigned int val5 ; + int ecode5 = 0 ; + void *argp6 = 0 ; + int res6 = 0 ; + void *argp7 = 0 ; + int res7 = 0 ; + PyObject *swig_obj[7] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_query_route", 7, 7, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_route" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_core_query_route" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_core_query_route" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + res4 = SWIG_AsCharPtrAndSize(swig_obj[3], &buf4, NULL, &alloc4); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_core_query_route" "', argument " "4"" of type '" "char *""'"); + } + arg4 = reinterpret_cast< char * >(buf4); + ecode5 = SWIG_AsVal_unsigned_SS_int(swig_obj[4], &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "zts_core_query_route" "', argument " "5"" of type '" "unsigned int""'"); + } + arg5 = static_cast< unsigned int >(val5); + res6 = SWIG_ConvertPtr(swig_obj[5], &argp6,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res6)) { + SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "zts_core_query_route" "', argument " "6"" of type '" "uint16_t *""'"); + } + arg6 = reinterpret_cast< uint16_t * >(argp6); + res7 = SWIG_ConvertPtr(swig_obj[6], &argp7,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res7)) { + SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "zts_core_query_route" "', argument " "7"" of type '" "uint16_t *""'"); + } + arg7 = reinterpret_cast< uint16_t * >(argp7); + result = (int)zts_core_query_route(arg1,arg2,arg3,arg4,arg5,arg6,arg7); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + if (alloc4 == SWIG_NEWOBJ) delete[] buf4; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + if (alloc4 == SWIG_NEWOBJ) delete[] buf4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_path_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_path_count" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_core_query_path_count(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_path(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + char *arg3 = (char *) 0 ; + unsigned int arg4 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_query_path", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_path" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_core_query_path" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_core_query_path" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_core_query_path" "', argument " "4"" of type '" "unsigned int""'"); + } + arg4 = static_cast< unsigned int >(val4); + result = (int)zts_core_query_path(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_mc_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned long long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_mc_count" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + result = (int)zts_core_query_mc_count(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_core_query_mc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + unsigned int arg2 ; + uint64_t *arg3 = (uint64_t *) 0 ; + uint32_t *arg4 = (uint32_t *) 0 ; + unsigned long long val1 ; + int ecode1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_core_query_mc", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_core_query_mc" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_core_query_mc" "', argument " "2"" of type '" "unsigned int""'"); + } + arg2 = static_cast< unsigned int >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_unsigned_long_long, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_core_query_mc" "', argument " "3"" of type '" "uint64_t *""'"); + } + arg3 = reinterpret_cast< uint64_t * >(argp3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_core_query_mc" "', argument " "4"" of type '" "uint32_t *""'"); + } + arg4 = reinterpret_cast< uint32_t * >(argp4); + result = (int)zts_core_query_mc(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_util_sign_root_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned int *arg2 = (unsigned int *) 0 ; + char *arg3 = (char *) 0 ; + unsigned int *arg4 = (unsigned int *) 0 ; + char *arg5 = (char *) 0 ; + unsigned int *arg6 = (unsigned int *) 0 ; + uint64_t arg7 ; + uint64_t arg8 ; + zts_root_set_t *arg9 = (zts_root_set_t *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + int res5 ; + char *buf5 = 0 ; + int alloc5 = 0 ; + void *argp6 = 0 ; + int res6 = 0 ; + unsigned long long val7 ; + int ecode7 = 0 ; + unsigned long long val8 ; + int ecode8 = 0 ; + void *argp9 = 0 ; + int res9 = 0 ; + PyObject *swig_obj[9] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_util_sign_root_set", 9, 9, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_util_sign_root_set" "', argument " "1"" of type '" "char *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_util_sign_root_set" "', argument " "2"" of type '" "unsigned int *""'"); + } + arg2 = reinterpret_cast< unsigned int * >(argp2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_util_sign_root_set" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_util_sign_root_set" "', argument " "4"" of type '" "unsigned int *""'"); + } + arg4 = reinterpret_cast< unsigned int * >(argp4); + res5 = SWIG_AsCharPtrAndSize(swig_obj[4], &buf5, NULL, &alloc5); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_util_sign_root_set" "', argument " "5"" of type '" "char *""'"); + } + arg5 = reinterpret_cast< char * >(buf5); + res6 = SWIG_ConvertPtr(swig_obj[5], &argp6,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res6)) { + SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "zts_util_sign_root_set" "', argument " "6"" of type '" "unsigned int *""'"); + } + arg6 = reinterpret_cast< unsigned int * >(argp6); + ecode7 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[6], &val7); + if (!SWIG_IsOK(ecode7)) { + SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "zts_util_sign_root_set" "', argument " "7"" of type '" "uint64_t""'"); + } + arg7 = static_cast< uint64_t >(val7); + ecode8 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[7], &val8); + if (!SWIG_IsOK(ecode8)) { + SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "zts_util_sign_root_set" "', argument " "8"" of type '" "uint64_t""'"); + } + arg8 = static_cast< uint64_t >(val8); + res9 = SWIG_ConvertPtr(swig_obj[8], &argp9,SWIGTYPE_p_zts_root_set_t, 0 | 0 ); + if (!SWIG_IsOK(res9)) { + SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "zts_util_sign_root_set" "', argument " "9"" of type '" "zts_root_set_t *""'"); + } + arg9 = reinterpret_cast< zts_root_set_t * >(argp9); + result = (int)zts_util_sign_root_set(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + if (alloc5 == SWIG_NEWOBJ) delete[] buf5; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + if (alloc5 == SWIG_NEWOBJ) delete[] buf5; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_util_delay(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + unsigned long arg1 ; + unsigned long val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_unsigned_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_util_delay" "', argument " "1"" of type '" "unsigned long""'"); + } + arg1 = static_cast< unsigned long >(val1); + zts_util_delay(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_util_get_ip_family(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_util_get_ip_family" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + result = (int)zts_util_get_ip_family((char const *)arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_util_ipstr_to_saddr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + unsigned short arg2 ; + zts_sockaddr *arg3 = (zts_sockaddr *) 0 ; + zts_socklen_t *arg4 = (zts_socklen_t *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + unsigned short val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_util_ipstr_to_saddr", 4, 4, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_util_ipstr_to_saddr" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + ecode2 = SWIG_AsVal_unsigned_SS_short(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_util_ipstr_to_saddr" "', argument " "2"" of type '" "unsigned short""'"); + } + arg2 = static_cast< unsigned short >(val2); + res3 = SWIG_ConvertPtr(swig_obj[2], &argp3,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_util_ipstr_to_saddr" "', argument " "3"" of type '" "zts_sockaddr *""'"); + } + arg3 = reinterpret_cast< zts_sockaddr * >(argp3); + res4 = SWIG_ConvertPtr(swig_obj[3], &argp4,SWIGTYPE_p_unsigned_int, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "zts_util_ipstr_to_saddr" "', argument " "4"" of type '" "zts_socklen_t *""'"); + } + arg4 = reinterpret_cast< zts_socklen_t * >(argp4); + result = (int)zts_util_ipstr_to_saddr((char const *)arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_util_ntop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_sockaddr *arg1 = (zts_sockaddr *) 0 ; + zts_socklen_t arg2 ; + char *arg3 = (char *) 0 ; + int arg4 ; + unsigned short *arg5 = (unsigned short *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + unsigned int val2 ; + int ecode2 = 0 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + int val4 ; + int ecode4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject *swig_obj[5] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_util_ntop", 5, 5, swig_obj)) SWIG_fail; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_sockaddr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_util_ntop" "', argument " "1"" of type '" "zts_sockaddr *""'"); + } + arg1 = reinterpret_cast< zts_sockaddr * >(argp1); + ecode2 = SWIG_AsVal_unsigned_SS_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_util_ntop" "', argument " "2"" of type '" "zts_socklen_t""'"); + } + arg2 = static_cast< zts_socklen_t >(val2); + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_util_ntop" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_util_ntop" "', argument " "4"" of type '" "int""'"); + } + arg4 = static_cast< int >(val4); + res5 = SWIG_ConvertPtr(swig_obj[4], &argp5,SWIGTYPE_p_unsigned_short, 0 | 0 ); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "zts_util_ntop" "', argument " "5"" of type '" "unsigned short *""'"); + } + arg5 = reinterpret_cast< unsigned short * >(argp5); + result = (int)zts_util_ntop(arg1,arg2,arg3,arg4,arg5); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ipaddr_ntoa(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + zts_ip_addr *arg1 = (zts_ip_addr *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject *swig_obj[1] ; + char *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ipaddr_ntoa" "', argument " "1"" of type '" "zts_ip_addr const *""'"); + } + arg1 = reinterpret_cast< zts_ip_addr * >(argp1); + result = (char *)zts_ipaddr_ntoa((zts_ip_addr const *)arg1); + resultobj = SWIG_FromCharPtr((const char *)result); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_ipaddr_aton(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + zts_ip_addr *arg2 = (zts_ip_addr *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_ipaddr_aton", 2, 2, swig_obj)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(swig_obj[0], &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "zts_ipaddr_aton" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + res2 = SWIG_ConvertPtr(swig_obj[1], &argp2,SWIGTYPE_p_zts_ip_addr, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_ipaddr_aton" "', argument " "2"" of type '" "zts_ip_addr *""'"); + } + arg2 = reinterpret_cast< zts_ip_addr * >(argp2); + result = (int)zts_ipaddr_aton((char const *)arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_inet_ntop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + void *arg2 = (void *) 0 ; + char *arg3 = (char *) 0 ; + zts_socklen_t arg4 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + int res3 ; + char *buf3 = 0 ; + int alloc3 = 0 ; + unsigned int val4 ; + int ecode4 = 0 ; + PyObject *swig_obj[4] ; + char *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "zts_inet_ntop", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_inet_ntop" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_ConvertPtr(swig_obj[1],SWIG_as_voidptrptr(&arg2), 0, 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_inet_ntop" "', argument " "2"" of type '" "void const *""'"); + } + res3 = SWIG_AsCharPtrAndSize(swig_obj[2], &buf3, NULL, &alloc3); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_inet_ntop" "', argument " "3"" of type '" "char *""'"); + } + arg3 = reinterpret_cast< char * >(buf3); + ecode4 = SWIG_AsVal_unsigned_SS_int(swig_obj[3], &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "zts_inet_ntop" "', argument " "4"" of type '" "zts_socklen_t""'"); + } + arg4 = static_cast< zts_socklen_t >(val4); + result = (char *)zts_inet_ntop(arg1,(void const *)arg2,arg3,arg4); + resultobj = SWIG_FromCharPtr((const char *)result); + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return resultobj; +fail: + if (alloc3 == SWIG_NEWOBJ) delete[] buf3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_inet_pton(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + char *arg2 = (char *) 0 ; + void *arg3 = (void *) 0 ; + int val1 ; + int ecode1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + int res3 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_inet_pton", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_inet_pton" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + res2 = SWIG_AsCharPtrAndSize(swig_obj[1], &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "zts_inet_pton" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + res3 = SWIG_ConvertPtr(swig_obj[2],SWIG_as_voidptrptr(&arg3), 0, 0); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "zts_inet_pton" "', argument " "3"" of type '" "void *""'"); + } + result = (int)zts_inet_pton(arg1,(char const *)arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return resultobj; +fail: + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_bind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + PyObject *arg4 = (PyObject *) 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_bind", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_bind" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_bind" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_py_bind" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + arg4 = swig_obj[3]; + result = (int)zts_py_bind(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + PyObject *arg4 = (PyObject *) 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[4] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_connect", 4, 4, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_connect" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_connect" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_py_connect" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + arg4 = swig_obj[3]; + result = (int)zts_py_connect(arg1,arg2,arg3,arg4); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_accept(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + PyObject *result = 0 ; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_accept" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (PyObject *)zts_py_accept(arg1); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_listen(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_listen", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_listen" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_listen" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_py_listen(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_recv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + PyObject *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_recv", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_recv" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_recv" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_py_recv" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (PyObject *)zts_py_recv(arg1,arg2,arg3); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_send(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + PyObject *arg2 = (PyObject *) 0 ; + int arg3 ; + int val1 ; + int ecode1 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject *swig_obj[3] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_send", 3, 3, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_send" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + arg2 = swig_obj[1]; + ecode3 = SWIG_AsVal_int(swig_obj[2], &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "zts_py_send" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (int)zts_py_send(arg1,arg2,arg3); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_close(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_close" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_py_close(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_setblocking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + int result; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_setblocking", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_setblocking" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_setblocking" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)zts_py_setblocking(arg1,arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_getblocking(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int val1 ; + int ecode1 = 0 ; + PyObject *swig_obj[1] ; + int result; + + if (!args) SWIG_fail; + swig_obj[0] = args; + ecode1 = SWIG_AsVal_int(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_getblocking" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (int)zts_py_getblocking(arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_zts_py_addr_get_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + uint64_t arg1 ; + int arg2 ; + unsigned long long val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject *swig_obj[2] ; + PyObject *result = 0 ; + + if (!SWIG_Python_UnpackTuple(args, "zts_py_addr_get_str", 2, 2, swig_obj)) SWIG_fail; + ecode1 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[0], &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "zts_py_addr_get_str" "', argument " "1"" of type '" "uint64_t""'"); + } + arg1 = static_cast< uint64_t >(val1); + ecode2 = SWIG_AsVal_int(swig_obj[1], &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "zts_py_addr_get_str" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (PyObject *)zts_py_addr_get_str(arg1,arg2); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + static PyMethodDef SwigMethods[] = { - { "SWIG_PyInstanceMethod_New", SWIG_PyInstanceMethod_New, METH_O, NULL }, - { "zts_node_info_t_node_id_set", _wrap_zts_node_info_t_node_id_set, METH_VARARGS, NULL }, - { "zts_node_info_t_node_id_get", _wrap_zts_node_info_t_node_id_get, METH_O, NULL }, - { "zts_node_info_t_port_primary_set", _wrap_zts_node_info_t_port_primary_set, METH_VARARGS, NULL }, - { "zts_node_info_t_port_primary_get", _wrap_zts_node_info_t_port_primary_get, METH_O, NULL }, - { "zts_node_info_t_port_secondary_set", _wrap_zts_node_info_t_port_secondary_set, METH_VARARGS, NULL }, - { "zts_node_info_t_port_secondary_get", _wrap_zts_node_info_t_port_secondary_get, METH_O, NULL }, - { "zts_node_info_t_port_tertiary_set", _wrap_zts_node_info_t_port_tertiary_set, METH_VARARGS, NULL }, - { "zts_node_info_t_port_tertiary_get", _wrap_zts_node_info_t_port_tertiary_get, METH_O, NULL }, - { "zts_node_info_t_ver_major_set", _wrap_zts_node_info_t_ver_major_set, METH_VARARGS, NULL }, - { "zts_node_info_t_ver_major_get", _wrap_zts_node_info_t_ver_major_get, METH_O, NULL }, - { "zts_node_info_t_ver_minor_set", _wrap_zts_node_info_t_ver_minor_set, METH_VARARGS, NULL }, - { "zts_node_info_t_ver_minor_get", _wrap_zts_node_info_t_ver_minor_get, METH_O, NULL }, - { "zts_node_info_t_ver_rev_set", _wrap_zts_node_info_t_ver_rev_set, METH_VARARGS, NULL }, - { "zts_node_info_t_ver_rev_get", _wrap_zts_node_info_t_ver_rev_get, METH_O, NULL }, - { "new_zts_node_info_t", _wrap_new_zts_node_info_t, METH_NOARGS, NULL }, - { "delete_zts_node_info_t", _wrap_delete_zts_node_info_t, METH_O, NULL }, - { "zts_node_info_t_swigregister", zts_node_info_t_swigregister, METH_O, NULL }, - { "zts_node_info_t_swiginit", zts_node_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_addr_info_t_net_id_set", _wrap_zts_addr_info_t_net_id_set, METH_VARARGS, NULL }, - { "zts_addr_info_t_net_id_get", _wrap_zts_addr_info_t_net_id_get, METH_O, NULL }, - { "zts_addr_info_t_addr_set", _wrap_zts_addr_info_t_addr_set, METH_VARARGS, NULL }, - { "zts_addr_info_t_addr_get", _wrap_zts_addr_info_t_addr_get, METH_O, NULL }, - { "new_zts_addr_info_t", _wrap_new_zts_addr_info_t, METH_NOARGS, NULL }, - { "delete_zts_addr_info_t", _wrap_delete_zts_addr_info_t, METH_O, NULL }, - { "zts_addr_info_t_swigregister", zts_addr_info_t_swigregister, METH_O, NULL }, - { "zts_addr_info_t_swiginit", zts_addr_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_route_info_t_target_set", _wrap_zts_route_info_t_target_set, METH_VARARGS, NULL }, - { "zts_route_info_t_target_get", _wrap_zts_route_info_t_target_get, METH_O, NULL }, - { "zts_route_info_t_via_set", _wrap_zts_route_info_t_via_set, METH_VARARGS, NULL }, - { "zts_route_info_t_via_get", _wrap_zts_route_info_t_via_get, METH_O, NULL }, - { "zts_route_info_t_flags_set", _wrap_zts_route_info_t_flags_set, METH_VARARGS, NULL }, - { "zts_route_info_t_flags_get", _wrap_zts_route_info_t_flags_get, METH_O, NULL }, - { "zts_route_info_t_metric_set", _wrap_zts_route_info_t_metric_set, METH_VARARGS, NULL }, - { "zts_route_info_t_metric_get", _wrap_zts_route_info_t_metric_get, METH_O, NULL }, - { "new_zts_route_info_t", _wrap_new_zts_route_info_t, METH_NOARGS, NULL }, - { "delete_zts_route_info_t", _wrap_delete_zts_route_info_t, METH_O, NULL }, - { "zts_route_info_t_swigregister", zts_route_info_t_swigregister, METH_O, NULL }, - { "zts_route_info_t_swiginit", zts_route_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_multicast_group_t_mac_set", _wrap_zts_multicast_group_t_mac_set, METH_VARARGS, NULL }, - { "zts_multicast_group_t_mac_get", _wrap_zts_multicast_group_t_mac_get, METH_O, NULL }, - { "zts_multicast_group_t_adi_set", _wrap_zts_multicast_group_t_adi_set, METH_VARARGS, NULL }, - { "zts_multicast_group_t_adi_get", _wrap_zts_multicast_group_t_adi_get, METH_O, NULL }, - { "new_zts_multicast_group_t", _wrap_new_zts_multicast_group_t, METH_NOARGS, NULL }, - { "delete_zts_multicast_group_t", _wrap_delete_zts_multicast_group_t, METH_O, NULL }, - { "zts_multicast_group_t_swigregister", zts_multicast_group_t_swigregister, METH_O, NULL }, - { "zts_multicast_group_t_swiginit", zts_multicast_group_t_swiginit, METH_VARARGS, NULL }, - { "zts_net_info_t_net_id_set", _wrap_zts_net_info_t_net_id_set, METH_VARARGS, NULL }, - { "zts_net_info_t_net_id_get", _wrap_zts_net_info_t_net_id_get, METH_O, NULL }, - { "zts_net_info_t_mac_set", _wrap_zts_net_info_t_mac_set, METH_VARARGS, NULL }, - { "zts_net_info_t_mac_get", _wrap_zts_net_info_t_mac_get, METH_O, NULL }, - { "zts_net_info_t_name_set", _wrap_zts_net_info_t_name_set, METH_VARARGS, NULL }, - { "zts_net_info_t_name_get", _wrap_zts_net_info_t_name_get, METH_O, NULL }, - { "zts_net_info_t_status_set", _wrap_zts_net_info_t_status_set, METH_VARARGS, NULL }, - { "zts_net_info_t_status_get", _wrap_zts_net_info_t_status_get, METH_O, NULL }, - { "zts_net_info_t_type_set", _wrap_zts_net_info_t_type_set, METH_VARARGS, NULL }, - { "zts_net_info_t_type_get", _wrap_zts_net_info_t_type_get, METH_O, NULL }, - { "zts_net_info_t_mtu_set", _wrap_zts_net_info_t_mtu_set, METH_VARARGS, NULL }, - { "zts_net_info_t_mtu_get", _wrap_zts_net_info_t_mtu_get, METH_O, NULL }, - { "zts_net_info_t_dhcp_set", _wrap_zts_net_info_t_dhcp_set, METH_VARARGS, NULL }, - { "zts_net_info_t_dhcp_get", _wrap_zts_net_info_t_dhcp_get, METH_O, NULL }, - { "zts_net_info_t_bridge_set", _wrap_zts_net_info_t_bridge_set, METH_VARARGS, NULL }, - { "zts_net_info_t_bridge_get", _wrap_zts_net_info_t_bridge_get, METH_O, NULL }, - { "zts_net_info_t_broadcast_enabled_set", _wrap_zts_net_info_t_broadcast_enabled_set, METH_VARARGS, NULL }, - { "zts_net_info_t_broadcast_enabled_get", _wrap_zts_net_info_t_broadcast_enabled_get, METH_O, NULL }, - { "zts_net_info_t_port_error_set", _wrap_zts_net_info_t_port_error_set, METH_VARARGS, NULL }, - { "zts_net_info_t_port_error_get", _wrap_zts_net_info_t_port_error_get, METH_O, NULL }, - { "zts_net_info_t_netconf_rev_set", _wrap_zts_net_info_t_netconf_rev_set, METH_VARARGS, NULL }, - { "zts_net_info_t_netconf_rev_get", _wrap_zts_net_info_t_netconf_rev_get, METH_O, NULL }, - { "zts_net_info_t_assigned_addr_count_set", _wrap_zts_net_info_t_assigned_addr_count_set, METH_VARARGS, NULL }, - { "zts_net_info_t_assigned_addr_count_get", _wrap_zts_net_info_t_assigned_addr_count_get, METH_O, NULL }, - { "zts_net_info_t_assigned_addrs_set", _wrap_zts_net_info_t_assigned_addrs_set, METH_VARARGS, NULL }, - { "zts_net_info_t_assigned_addrs_get", _wrap_zts_net_info_t_assigned_addrs_get, METH_O, NULL }, - { "zts_net_info_t_route_count_set", _wrap_zts_net_info_t_route_count_set, METH_VARARGS, NULL }, - { "zts_net_info_t_route_count_get", _wrap_zts_net_info_t_route_count_get, METH_O, NULL }, - { "zts_net_info_t_routes_set", _wrap_zts_net_info_t_routes_set, METH_VARARGS, NULL }, - { "zts_net_info_t_routes_get", _wrap_zts_net_info_t_routes_get, METH_O, NULL }, - { "zts_net_info_t_multicast_sub_count_set", _wrap_zts_net_info_t_multicast_sub_count_set, METH_VARARGS, NULL }, - { "zts_net_info_t_multicast_sub_count_get", _wrap_zts_net_info_t_multicast_sub_count_get, METH_O, NULL }, - { "new_zts_net_info_t", _wrap_new_zts_net_info_t, METH_NOARGS, NULL }, - { "delete_zts_net_info_t", _wrap_delete_zts_net_info_t, METH_O, NULL }, - { "zts_net_info_t_swigregister", zts_net_info_t_swigregister, METH_O, NULL }, - { "zts_net_info_t_swiginit", zts_net_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_path_t_address_set", _wrap_zts_path_t_address_set, METH_VARARGS, NULL }, - { "zts_path_t_address_get", _wrap_zts_path_t_address_get, METH_O, NULL }, - { "zts_path_t_last_tx_set", _wrap_zts_path_t_last_tx_set, METH_VARARGS, NULL }, - { "zts_path_t_last_tx_get", _wrap_zts_path_t_last_tx_get, METH_O, NULL }, - { "zts_path_t_last_rx_set", _wrap_zts_path_t_last_rx_set, METH_VARARGS, NULL }, - { "zts_path_t_last_rx_get", _wrap_zts_path_t_last_rx_get, METH_O, NULL }, - { "zts_path_t_trusted_path_id_set", _wrap_zts_path_t_trusted_path_id_set, METH_VARARGS, NULL }, - { "zts_path_t_trusted_path_id_get", _wrap_zts_path_t_trusted_path_id_get, METH_O, NULL }, - { "zts_path_t_latency_set", _wrap_zts_path_t_latency_set, METH_VARARGS, NULL }, - { "zts_path_t_latency_get", _wrap_zts_path_t_latency_get, METH_O, NULL }, - { "zts_path_t_unused_0_set", _wrap_zts_path_t_unused_0_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_0_get", _wrap_zts_path_t_unused_0_get, METH_O, NULL }, - { "zts_path_t_unused_1_set", _wrap_zts_path_t_unused_1_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_1_get", _wrap_zts_path_t_unused_1_get, METH_O, NULL }, - { "zts_path_t_unused_2_set", _wrap_zts_path_t_unused_2_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_2_get", _wrap_zts_path_t_unused_2_get, METH_O, NULL }, - { "zts_path_t_unused_3_set", _wrap_zts_path_t_unused_3_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_3_get", _wrap_zts_path_t_unused_3_get, METH_O, NULL }, - { "zts_path_t_unused_4_set", _wrap_zts_path_t_unused_4_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_4_get", _wrap_zts_path_t_unused_4_get, METH_O, NULL }, - { "zts_path_t_unused_5_set", _wrap_zts_path_t_unused_5_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_5_get", _wrap_zts_path_t_unused_5_get, METH_O, NULL }, - { "zts_path_t_unused_6_set", _wrap_zts_path_t_unused_6_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_6_get", _wrap_zts_path_t_unused_6_get, METH_O, NULL }, - { "zts_path_t_unused_7_set", _wrap_zts_path_t_unused_7_set, METH_VARARGS, NULL }, - { "zts_path_t_unused_7_get", _wrap_zts_path_t_unused_7_get, METH_O, NULL }, - { "zts_path_t_ifname_set", _wrap_zts_path_t_ifname_set, METH_VARARGS, NULL }, - { "zts_path_t_ifname_get", _wrap_zts_path_t_ifname_get, METH_O, NULL }, - { "zts_path_t_expired_set", _wrap_zts_path_t_expired_set, METH_VARARGS, NULL }, - { "zts_path_t_expired_get", _wrap_zts_path_t_expired_get, METH_O, NULL }, - { "zts_path_t_preferred_set", _wrap_zts_path_t_preferred_set, METH_VARARGS, NULL }, - { "zts_path_t_preferred_get", _wrap_zts_path_t_preferred_get, METH_O, NULL }, - { "new_zts_path_t", _wrap_new_zts_path_t, METH_NOARGS, NULL }, - { "delete_zts_path_t", _wrap_delete_zts_path_t, METH_O, NULL }, - { "zts_path_t_swigregister", zts_path_t_swigregister, METH_O, NULL }, - { "zts_path_t_swiginit", zts_path_t_swiginit, METH_VARARGS, NULL }, - { "zts_peer_info_t_peer_id_set", _wrap_zts_peer_info_t_peer_id_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_peer_id_get", _wrap_zts_peer_info_t_peer_id_get, METH_O, NULL }, - { "zts_peer_info_t_ver_major_set", _wrap_zts_peer_info_t_ver_major_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_ver_major_get", _wrap_zts_peer_info_t_ver_major_get, METH_O, NULL }, - { "zts_peer_info_t_ver_minor_set", _wrap_zts_peer_info_t_ver_minor_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_ver_minor_get", _wrap_zts_peer_info_t_ver_minor_get, METH_O, NULL }, - { "zts_peer_info_t_ver_rev_set", _wrap_zts_peer_info_t_ver_rev_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_ver_rev_get", _wrap_zts_peer_info_t_ver_rev_get, METH_O, NULL }, - { "zts_peer_info_t_latency_set", _wrap_zts_peer_info_t_latency_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_latency_get", _wrap_zts_peer_info_t_latency_get, METH_O, NULL }, - { "zts_peer_info_t_role_set", _wrap_zts_peer_info_t_role_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_role_get", _wrap_zts_peer_info_t_role_get, METH_O, NULL }, - { "zts_peer_info_t_path_count_set", _wrap_zts_peer_info_t_path_count_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_path_count_get", _wrap_zts_peer_info_t_path_count_get, METH_O, NULL }, - { "zts_peer_info_t_unused_0_set", _wrap_zts_peer_info_t_unused_0_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_unused_0_get", _wrap_zts_peer_info_t_unused_0_get, METH_O, NULL }, - { "zts_peer_info_t_paths_set", _wrap_zts_peer_info_t_paths_set, METH_VARARGS, NULL }, - { "zts_peer_info_t_paths_get", _wrap_zts_peer_info_t_paths_get, METH_O, NULL }, - { "new_zts_peer_info_t", _wrap_new_zts_peer_info_t, METH_NOARGS, NULL }, - { "delete_zts_peer_info_t", _wrap_delete_zts_peer_info_t, METH_O, NULL }, - { "zts_peer_info_t_swigregister", zts_peer_info_t_swigregister, METH_O, NULL }, - { "zts_peer_info_t_swiginit", zts_peer_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_root_set_t_public_id_str_set", _wrap_zts_root_set_t_public_id_str_set, METH_VARARGS, NULL }, - { "zts_root_set_t_public_id_str_get", _wrap_zts_root_set_t_public_id_str_get, METH_O, NULL }, - { "zts_root_set_t_endpoint_ip_str_set", _wrap_zts_root_set_t_endpoint_ip_str_set, METH_VARARGS, NULL }, - { "zts_root_set_t_endpoint_ip_str_get", _wrap_zts_root_set_t_endpoint_ip_str_get, METH_O, NULL }, - { "new_zts_root_set_t", _wrap_new_zts_root_set_t, METH_NOARGS, NULL }, - { "delete_zts_root_set_t", _wrap_delete_zts_root_set_t, METH_O, NULL }, - { "zts_root_set_t_swigregister", zts_root_set_t_swigregister, METH_O, NULL }, - { "zts_root_set_t_swiginit", zts_root_set_t_swiginit, METH_VARARGS, NULL }, - { "zts_netif_info_t_net_id_set", _wrap_zts_netif_info_t_net_id_set, METH_VARARGS, NULL }, - { "zts_netif_info_t_net_id_get", _wrap_zts_netif_info_t_net_id_get, METH_O, NULL }, - { "zts_netif_info_t_mac_set", _wrap_zts_netif_info_t_mac_set, METH_VARARGS, NULL }, - { "zts_netif_info_t_mac_get", _wrap_zts_netif_info_t_mac_get, METH_O, NULL }, - { "zts_netif_info_t_mtu_set", _wrap_zts_netif_info_t_mtu_set, METH_VARARGS, NULL }, - { "zts_netif_info_t_mtu_get", _wrap_zts_netif_info_t_mtu_get, METH_O, NULL }, - { "new_zts_netif_info_t", _wrap_new_zts_netif_info_t, METH_NOARGS, NULL }, - { "delete_zts_netif_info_t", _wrap_delete_zts_netif_info_t, METH_O, NULL }, - { "zts_netif_info_t_swigregister", zts_netif_info_t_swigregister, METH_O, NULL }, - { "zts_netif_info_t_swiginit", zts_netif_info_t_swiginit, METH_VARARGS, NULL }, - { "zts_event_msg_t_event_code_set", _wrap_zts_event_msg_t_event_code_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_event_code_get", _wrap_zts_event_msg_t_event_code_get, METH_O, NULL }, - { "zts_event_msg_t_node_set", _wrap_zts_event_msg_t_node_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_node_get", _wrap_zts_event_msg_t_node_get, METH_O, NULL }, - { "zts_event_msg_t_network_set", _wrap_zts_event_msg_t_network_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_network_get", _wrap_zts_event_msg_t_network_get, METH_O, NULL }, - { "zts_event_msg_t_netif_set", _wrap_zts_event_msg_t_netif_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_netif_get", _wrap_zts_event_msg_t_netif_get, METH_O, NULL }, - { "zts_event_msg_t_route_set", _wrap_zts_event_msg_t_route_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_route_get", _wrap_zts_event_msg_t_route_get, METH_O, NULL }, - { "zts_event_msg_t_peer_set", _wrap_zts_event_msg_t_peer_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_peer_get", _wrap_zts_event_msg_t_peer_get, METH_O, NULL }, - { "zts_event_msg_t_addr_set", _wrap_zts_event_msg_t_addr_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_addr_get", _wrap_zts_event_msg_t_addr_get, METH_O, NULL }, - { "zts_event_msg_t_cache_set", _wrap_zts_event_msg_t_cache_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_cache_get", _wrap_zts_event_msg_t_cache_get, METH_O, NULL }, - { "zts_event_msg_t_len_set", _wrap_zts_event_msg_t_len_set, METH_VARARGS, NULL }, - { "zts_event_msg_t_len_get", _wrap_zts_event_msg_t_len_get, METH_O, NULL }, - { "new_zts_event_msg_t", _wrap_new_zts_event_msg_t, METH_NOARGS, NULL }, - { "delete_zts_event_msg_t", _wrap_delete_zts_event_msg_t, METH_O, NULL }, - { "zts_event_msg_t_swigregister", zts_event_msg_t_swigregister, METH_O, NULL }, - { "zts_event_msg_t_swiginit", zts_event_msg_t_swiginit, METH_VARARGS, NULL }, - { "PythonDirectorCallbackClass_on_zerotier_event", - _wrap_PythonDirectorCallbackClass_on_zerotier_event, - METH_VARARGS, - NULL }, - { "delete_PythonDirectorCallbackClass", _wrap_delete_PythonDirectorCallbackClass, METH_O, NULL }, - { "new_PythonDirectorCallbackClass", _wrap_new_PythonDirectorCallbackClass, METH_O, NULL }, - { "disown_PythonDirectorCallbackClass", _wrap_disown_PythonDirectorCallbackClass, METH_O, NULL }, - { "PythonDirectorCallbackClass_swigregister", PythonDirectorCallbackClass_swigregister, METH_O, NULL }, - { "PythonDirectorCallbackClass_swiginit", PythonDirectorCallbackClass_swiginit, METH_VARARGS, NULL }, - { "zts_py_bind", _wrap_zts_py_bind, METH_VARARGS, NULL }, - { "zts_py_connect", _wrap_zts_py_connect, METH_VARARGS, NULL }, - { "zts_py_accept", _wrap_zts_py_accept, METH_O, NULL }, - { "zts_py_listen", _wrap_zts_py_listen, METH_VARARGS, NULL }, - { "zts_py_recv", _wrap_zts_py_recv, METH_VARARGS, NULL }, - { "zts_py_send", _wrap_zts_py_send, METH_VARARGS, NULL }, - { "zts_py_close", _wrap_zts_py_close, METH_O, NULL }, - { "zts_py_setblocking", _wrap_zts_py_setblocking, METH_VARARGS, NULL }, - { "zts_py_getblocking", _wrap_zts_py_getblocking, METH_O, NULL }, - { "zts_id_new", _wrap_zts_id_new, METH_VARARGS, NULL }, - { "zts_id_pair_is_valid", _wrap_zts_id_pair_is_valid, METH_VARARGS, NULL }, - { "zts_init_from_storage", _wrap_zts_init_from_storage, METH_O, NULL }, - { "zts_init_from_memory", _wrap_zts_init_from_memory, METH_VARARGS, NULL }, - { "zts_init_set_event_handler", _wrap_zts_init_set_event_handler, METH_O, NULL }, - { "zts_init_blacklist_if", _wrap_zts_init_blacklist_if, METH_VARARGS, NULL }, - { "zts_init_set_roots", _wrap_zts_init_set_roots, METH_VARARGS, NULL }, - { "zts_init_set_port", _wrap_zts_init_set_port, METH_O, NULL }, - { "zts_init_allow_net_cache", _wrap_zts_init_allow_net_cache, METH_O, NULL }, - { "zts_init_allow_peer_cache", _wrap_zts_init_allow_peer_cache, METH_O, NULL }, - { "zts_init_allow_roots_cache", _wrap_zts_init_allow_roots_cache, METH_O, NULL }, - { "zts_init_allow_id_cache", _wrap_zts_init_allow_id_cache, METH_O, NULL }, - { "zts_addr_is_assigned", _wrap_zts_addr_is_assigned, METH_VARARGS, NULL }, - { "zts_addr_get", _wrap_zts_addr_get, METH_VARARGS, NULL }, - { "zts_addr_get_str", _wrap_zts_addr_get_str, METH_VARARGS, NULL }, - { "zts_addr_get_all", _wrap_zts_addr_get_all, METH_VARARGS, NULL }, - { "zts_addr_compute_6plane", _wrap_zts_addr_compute_6plane, METH_VARARGS, NULL }, - { "zts_addr_compute_rfc4193", _wrap_zts_addr_compute_rfc4193, METH_VARARGS, NULL }, - { "zts_addr_compute_rfc4193_str", _wrap_zts_addr_compute_rfc4193_str, METH_VARARGS, NULL }, - { "zts_addr_compute_6plane_str", _wrap_zts_addr_compute_6plane_str, METH_VARARGS, NULL }, - { "zts_net_compute_adhoc_id", _wrap_zts_net_compute_adhoc_id, METH_VARARGS, NULL }, - { "zts_net_join", _wrap_zts_net_join, METH_O, NULL }, - { "zts_net_leave", _wrap_zts_net_leave, METH_O, NULL }, - { "zts_net_transport_is_ready", _wrap_zts_net_transport_is_ready, METH_O, NULL }, - { "zts_net_get_mac", _wrap_zts_net_get_mac, METH_O, NULL }, - { "zts_net_get_mac_str", _wrap_zts_net_get_mac_str, METH_VARARGS, NULL }, - { "zts_net_get_broadcast", _wrap_zts_net_get_broadcast, METH_O, NULL }, - { "zts_net_get_mtu", _wrap_zts_net_get_mtu, METH_O, NULL }, - { "zts_net_get_name", _wrap_zts_net_get_name, METH_VARARGS, NULL }, - { "zts_net_get_status", _wrap_zts_net_get_status, METH_O, NULL }, - { "zts_net_get_type", _wrap_zts_net_get_type, METH_O, NULL }, - { "zts_route_is_assigned", _wrap_zts_route_is_assigned, METH_VARARGS, NULL }, - { "zts_node_start", _wrap_zts_node_start, METH_NOARGS, NULL }, - { "zts_node_is_online", _wrap_zts_node_is_online, METH_NOARGS, NULL }, - { "zts_node_get_id", _wrap_zts_node_get_id, METH_NOARGS, NULL }, - { "zts_node_get_id_pair", _wrap_zts_node_get_id_pair, METH_VARARGS, NULL }, - { "zts_node_get_port", _wrap_zts_node_get_port, METH_NOARGS, NULL }, - { "zts_node_stop", _wrap_zts_node_stop, METH_NOARGS, NULL }, - { "zts_node_free", _wrap_zts_node_free, METH_NOARGS, NULL }, - { "zts_moon_orbit", _wrap_zts_moon_orbit, METH_VARARGS, NULL }, - { "zts_moon_deorbit", _wrap_zts_moon_deorbit, METH_O, NULL }, - { "zts_stats_counter_t_link_tx_set", _wrap_zts_stats_counter_t_link_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_link_tx_get", _wrap_zts_stats_counter_t_link_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_link_rx_set", _wrap_zts_stats_counter_t_link_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_link_rx_get", _wrap_zts_stats_counter_t_link_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_link_drop_set", _wrap_zts_stats_counter_t_link_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_link_drop_get", _wrap_zts_stats_counter_t_link_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_link_err_set", _wrap_zts_stats_counter_t_link_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_link_err_get", _wrap_zts_stats_counter_t_link_err_get, METH_O, NULL }, - { "zts_stats_counter_t_etharp_tx_set", _wrap_zts_stats_counter_t_etharp_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_etharp_tx_get", _wrap_zts_stats_counter_t_etharp_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_etharp_rx_set", _wrap_zts_stats_counter_t_etharp_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_etharp_rx_get", _wrap_zts_stats_counter_t_etharp_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_etharp_drop_set", _wrap_zts_stats_counter_t_etharp_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_etharp_drop_get", _wrap_zts_stats_counter_t_etharp_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_etharp_err_set", _wrap_zts_stats_counter_t_etharp_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_etharp_err_get", _wrap_zts_stats_counter_t_etharp_err_get, METH_O, NULL }, - { "zts_stats_counter_t_ip4_tx_set", _wrap_zts_stats_counter_t_ip4_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip4_tx_get", _wrap_zts_stats_counter_t_ip4_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_ip4_rx_set", _wrap_zts_stats_counter_t_ip4_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip4_rx_get", _wrap_zts_stats_counter_t_ip4_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_ip4_drop_set", _wrap_zts_stats_counter_t_ip4_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip4_drop_get", _wrap_zts_stats_counter_t_ip4_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_ip4_err_set", _wrap_zts_stats_counter_t_ip4_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip4_err_get", _wrap_zts_stats_counter_t_ip4_err_get, METH_O, NULL }, - { "zts_stats_counter_t_ip6_tx_set", _wrap_zts_stats_counter_t_ip6_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip6_tx_get", _wrap_zts_stats_counter_t_ip6_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_ip6_rx_set", _wrap_zts_stats_counter_t_ip6_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip6_rx_get", _wrap_zts_stats_counter_t_ip6_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_ip6_drop_set", _wrap_zts_stats_counter_t_ip6_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip6_drop_get", _wrap_zts_stats_counter_t_ip6_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_ip6_err_set", _wrap_zts_stats_counter_t_ip6_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_ip6_err_get", _wrap_zts_stats_counter_t_ip6_err_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp4_tx_set", _wrap_zts_stats_counter_t_icmp4_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp4_tx_get", _wrap_zts_stats_counter_t_icmp4_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp4_rx_set", _wrap_zts_stats_counter_t_icmp4_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp4_rx_get", _wrap_zts_stats_counter_t_icmp4_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp4_drop_set", _wrap_zts_stats_counter_t_icmp4_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp4_drop_get", _wrap_zts_stats_counter_t_icmp4_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp4_err_set", _wrap_zts_stats_counter_t_icmp4_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp4_err_get", _wrap_zts_stats_counter_t_icmp4_err_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp6_tx_set", _wrap_zts_stats_counter_t_icmp6_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp6_tx_get", _wrap_zts_stats_counter_t_icmp6_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp6_rx_set", _wrap_zts_stats_counter_t_icmp6_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp6_rx_get", _wrap_zts_stats_counter_t_icmp6_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp6_drop_set", _wrap_zts_stats_counter_t_icmp6_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp6_drop_get", _wrap_zts_stats_counter_t_icmp6_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_icmp6_err_set", _wrap_zts_stats_counter_t_icmp6_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_icmp6_err_get", _wrap_zts_stats_counter_t_icmp6_err_get, METH_O, NULL }, - { "zts_stats_counter_t_udp_tx_set", _wrap_zts_stats_counter_t_udp_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_udp_tx_get", _wrap_zts_stats_counter_t_udp_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_udp_rx_set", _wrap_zts_stats_counter_t_udp_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_udp_rx_get", _wrap_zts_stats_counter_t_udp_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_udp_drop_set", _wrap_zts_stats_counter_t_udp_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_udp_drop_get", _wrap_zts_stats_counter_t_udp_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_udp_err_set", _wrap_zts_stats_counter_t_udp_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_udp_err_get", _wrap_zts_stats_counter_t_udp_err_get, METH_O, NULL }, - { "zts_stats_counter_t_tcp_tx_set", _wrap_zts_stats_counter_t_tcp_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_tcp_tx_get", _wrap_zts_stats_counter_t_tcp_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_tcp_rx_set", _wrap_zts_stats_counter_t_tcp_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_tcp_rx_get", _wrap_zts_stats_counter_t_tcp_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_tcp_drop_set", _wrap_zts_stats_counter_t_tcp_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_tcp_drop_get", _wrap_zts_stats_counter_t_tcp_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_tcp_err_set", _wrap_zts_stats_counter_t_tcp_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_tcp_err_get", _wrap_zts_stats_counter_t_tcp_err_get, METH_O, NULL }, - { "zts_stats_counter_t_nd6_tx_set", _wrap_zts_stats_counter_t_nd6_tx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_nd6_tx_get", _wrap_zts_stats_counter_t_nd6_tx_get, METH_O, NULL }, - { "zts_stats_counter_t_nd6_rx_set", _wrap_zts_stats_counter_t_nd6_rx_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_nd6_rx_get", _wrap_zts_stats_counter_t_nd6_rx_get, METH_O, NULL }, - { "zts_stats_counter_t_nd6_drop_set", _wrap_zts_stats_counter_t_nd6_drop_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_nd6_drop_get", _wrap_zts_stats_counter_t_nd6_drop_get, METH_O, NULL }, - { "zts_stats_counter_t_nd6_err_set", _wrap_zts_stats_counter_t_nd6_err_set, METH_VARARGS, NULL }, - { "zts_stats_counter_t_nd6_err_get", _wrap_zts_stats_counter_t_nd6_err_get, METH_O, NULL }, - { "new_zts_stats_counter_t", _wrap_new_zts_stats_counter_t, METH_NOARGS, NULL }, - { "delete_zts_stats_counter_t", _wrap_delete_zts_stats_counter_t, METH_O, NULL }, - { "zts_stats_counter_t_swigregister", zts_stats_counter_t_swigregister, METH_O, NULL }, - { "zts_stats_counter_t_swiginit", zts_stats_counter_t_swiginit, METH_VARARGS, NULL }, - { "zts_stats_get_all", _wrap_zts_stats_get_all, METH_O, NULL }, - { "zts_bsd_socket", _wrap_zts_bsd_socket, METH_VARARGS, NULL }, - { "zts_bsd_connect", _wrap_zts_bsd_connect, METH_VARARGS, NULL }, - { "zts_bsd_bind", _wrap_zts_bsd_bind, METH_VARARGS, NULL }, - { "zts_bsd_listen", _wrap_zts_bsd_listen, METH_VARARGS, NULL }, - { "zts_bsd_accept", _wrap_zts_bsd_accept, METH_VARARGS, NULL }, - { "zts_bsd_setsockopt", _wrap_zts_bsd_setsockopt, METH_VARARGS, NULL }, - { "zts_bsd_getsockopt", _wrap_zts_bsd_getsockopt, METH_VARARGS, NULL }, - { "zts_bsd_getsockname", _wrap_zts_bsd_getsockname, METH_VARARGS, NULL }, - { "zts_bsd_getpeername", _wrap_zts_bsd_getpeername, METH_VARARGS, NULL }, - { "zts_bsd_close", _wrap_zts_bsd_close, METH_O, NULL }, - { "zts_timeval_tv_sec_set", _wrap_zts_timeval_tv_sec_set, METH_VARARGS, NULL }, - { "zts_timeval_tv_sec_get", _wrap_zts_timeval_tv_sec_get, METH_O, NULL }, - { "zts_timeval_tv_usec_set", _wrap_zts_timeval_tv_usec_set, METH_VARARGS, NULL }, - { "zts_timeval_tv_usec_get", _wrap_zts_timeval_tv_usec_get, METH_O, NULL }, - { "new_zts_timeval", _wrap_new_zts_timeval, METH_NOARGS, NULL }, - { "delete_zts_timeval", _wrap_delete_zts_timeval, METH_O, NULL }, - { "zts_timeval_swigregister", zts_timeval_swigregister, METH_O, NULL }, - { "zts_timeval_swiginit", zts_timeval_swiginit, METH_VARARGS, NULL }, - { "zts_bsd_select", _wrap_zts_bsd_select, METH_VARARGS, NULL }, - { "zts_bsd_fcntl", _wrap_zts_bsd_fcntl, METH_VARARGS, NULL }, - { "zts_bsd_poll", _wrap_zts_bsd_poll, METH_VARARGS, NULL }, - { "zts_bsd_ioctl", _wrap_zts_bsd_ioctl, METH_VARARGS, NULL }, - { "zts_bsd_send", _wrap_zts_bsd_send, METH_VARARGS, NULL }, - { "zts_bsd_sendto", _wrap_zts_bsd_sendto, METH_VARARGS, NULL }, - { "zts_iovec_iov_base_set", _wrap_zts_iovec_iov_base_set, METH_VARARGS, NULL }, - { "zts_iovec_iov_base_get", _wrap_zts_iovec_iov_base_get, METH_O, NULL }, - { "zts_iovec_iov_len_set", _wrap_zts_iovec_iov_len_set, METH_VARARGS, NULL }, - { "zts_iovec_iov_len_get", _wrap_zts_iovec_iov_len_get, METH_O, NULL }, - { "new_zts_iovec", _wrap_new_zts_iovec, METH_NOARGS, NULL }, - { "delete_zts_iovec", _wrap_delete_zts_iovec, METH_O, NULL }, - { "zts_iovec_swigregister", zts_iovec_swigregister, METH_O, NULL }, - { "zts_iovec_swiginit", zts_iovec_swiginit, METH_VARARGS, NULL }, - { "zts_bsd_sendmsg", _wrap_zts_bsd_sendmsg, METH_VARARGS, NULL }, - { "zts_bsd_recv", _wrap_zts_bsd_recv, METH_VARARGS, NULL }, - { "zts_bsd_recvfrom", _wrap_zts_bsd_recvfrom, METH_VARARGS, NULL }, - { "zts_bsd_recvmsg", _wrap_zts_bsd_recvmsg, METH_VARARGS, NULL }, - { "zts_bsd_read", _wrap_zts_bsd_read, METH_VARARGS, NULL }, - { "zts_bsd_readv", _wrap_zts_bsd_readv, METH_VARARGS, NULL }, - { "zts_bsd_write", _wrap_zts_bsd_write, METH_VARARGS, NULL }, - { "zts_bsd_writev", _wrap_zts_bsd_writev, METH_VARARGS, NULL }, - { "zts_bsd_shutdown", _wrap_zts_bsd_shutdown, METH_VARARGS, NULL }, - { "zts_connect", _wrap_zts_connect, METH_VARARGS, NULL }, - { "zts_bind", _wrap_zts_bind, METH_VARARGS, NULL }, - { "zts_accept", _wrap_zts_accept, METH_VARARGS, NULL }, - { "zts_getpeername", _wrap_zts_getpeername, METH_VARARGS, NULL }, - { "zts_getsockname", _wrap_zts_getsockname, METH_VARARGS, NULL }, - { "zts_tcp_client", _wrap_zts_tcp_client, METH_VARARGS, NULL }, - { "zts_tcp_server", _wrap_zts_tcp_server, METH_VARARGS, NULL }, - { "zts_udp_server", _wrap_zts_udp_server, METH_VARARGS, NULL }, - { "zts_udp_client", _wrap_zts_udp_client, METH_O, NULL }, - { "zts_set_no_delay", _wrap_zts_set_no_delay, METH_VARARGS, NULL }, - { "zts_get_no_delay", _wrap_zts_get_no_delay, METH_O, NULL }, - { "zts_set_linger", _wrap_zts_set_linger, METH_VARARGS, NULL }, - { "zts_get_linger_enabled", _wrap_zts_get_linger_enabled, METH_O, NULL }, - { "zts_get_linger_value", _wrap_zts_get_linger_value, METH_O, NULL }, - { "zts_get_pending_data_size", _wrap_zts_get_pending_data_size, METH_O, NULL }, - { "zts_set_reuse_addr", _wrap_zts_set_reuse_addr, METH_VARARGS, NULL }, - { "zts_get_reuse_addr", _wrap_zts_get_reuse_addr, METH_O, NULL }, - { "zts_set_recv_timeout", _wrap_zts_set_recv_timeout, METH_VARARGS, NULL }, - { "zts_get_recv_timeout", _wrap_zts_get_recv_timeout, METH_O, NULL }, - { "zts_set_send_timeout", _wrap_zts_set_send_timeout, METH_VARARGS, NULL }, - { "zts_get_send_timeout", _wrap_zts_get_send_timeout, METH_O, NULL }, - { "zts_set_send_buf_size", _wrap_zts_set_send_buf_size, METH_VARARGS, NULL }, - { "zts_get_send_buf_size", _wrap_zts_get_send_buf_size, METH_O, NULL }, - { "zts_set_recv_buf_size", _wrap_zts_set_recv_buf_size, METH_VARARGS, NULL }, - { "zts_get_recv_buf_size", _wrap_zts_get_recv_buf_size, METH_O, NULL }, - { "zts_set_ttl", _wrap_zts_set_ttl, METH_VARARGS, NULL }, - { "zts_get_ttl", _wrap_zts_get_ttl, METH_O, NULL }, - { "zts_set_blocking", _wrap_zts_set_blocking, METH_VARARGS, NULL }, - { "zts_get_blocking", _wrap_zts_get_blocking, METH_O, NULL }, - { "zts_set_keepalive", _wrap_zts_set_keepalive, METH_VARARGS, NULL }, - { "zts_get_keepalive", _wrap_zts_get_keepalive, METH_O, NULL }, - { "zts_hostent_h_name_set", _wrap_zts_hostent_h_name_set, METH_VARARGS, NULL }, - { "zts_hostent_h_name_get", _wrap_zts_hostent_h_name_get, METH_O, NULL }, - { "zts_hostent_h_aliases_set", _wrap_zts_hostent_h_aliases_set, METH_VARARGS, NULL }, - { "zts_hostent_h_aliases_get", _wrap_zts_hostent_h_aliases_get, METH_O, NULL }, - { "zts_hostent_h_addrtype_set", _wrap_zts_hostent_h_addrtype_set, METH_VARARGS, NULL }, - { "zts_hostent_h_addrtype_get", _wrap_zts_hostent_h_addrtype_get, METH_O, NULL }, - { "zts_hostent_h_length_set", _wrap_zts_hostent_h_length_set, METH_VARARGS, NULL }, - { "zts_hostent_h_length_get", _wrap_zts_hostent_h_length_get, METH_O, NULL }, - { "zts_hostent_h_addr_list_set", _wrap_zts_hostent_h_addr_list_set, METH_VARARGS, NULL }, - { "zts_hostent_h_addr_list_get", _wrap_zts_hostent_h_addr_list_get, METH_O, NULL }, - { "new_zts_hostent", _wrap_new_zts_hostent, METH_NOARGS, NULL }, - { "delete_zts_hostent", _wrap_delete_zts_hostent, METH_O, NULL }, - { "zts_hostent_swigregister", zts_hostent_swigregister, METH_O, NULL }, - { "zts_hostent_swiginit", zts_hostent_swiginit, METH_VARARGS, NULL }, - { "zts_bsd_gethostbyname", _wrap_zts_bsd_gethostbyname, METH_O, NULL }, - { "zts_ip4_addr_addr_set", _wrap_zts_ip4_addr_addr_set, METH_VARARGS, NULL }, - { "zts_ip4_addr_addr_get", _wrap_zts_ip4_addr_addr_get, METH_O, NULL }, - { "new_zts_ip4_addr", _wrap_new_zts_ip4_addr, METH_NOARGS, NULL }, - { "delete_zts_ip4_addr", _wrap_delete_zts_ip4_addr, METH_O, NULL }, - { "zts_ip4_addr_swigregister", zts_ip4_addr_swigregister, METH_O, NULL }, - { "zts_ip4_addr_swiginit", zts_ip4_addr_swiginit, METH_VARARGS, NULL }, - { "zts_ip6_addr_addr_set", _wrap_zts_ip6_addr_addr_set, METH_VARARGS, NULL }, - { "zts_ip6_addr_addr_get", _wrap_zts_ip6_addr_addr_get, METH_O, NULL }, - { "new_zts_ip6_addr", _wrap_new_zts_ip6_addr, METH_NOARGS, NULL }, - { "delete_zts_ip6_addr", _wrap_delete_zts_ip6_addr, METH_O, NULL }, - { "zts_ip6_addr_swigregister", zts_ip6_addr_swigregister, METH_O, NULL }, - { "zts_ip6_addr_swiginit", zts_ip6_addr_swiginit, METH_VARARGS, NULL }, - { "zts_ip_addr_type_set", _wrap_zts_ip_addr_type_set, METH_VARARGS, NULL }, - { "zts_ip_addr_type_get", _wrap_zts_ip_addr_type_get, METH_O, NULL }, - { "new_zts_ip_addr", _wrap_new_zts_ip_addr, METH_NOARGS, NULL }, - { "delete_zts_ip_addr", _wrap_delete_zts_ip_addr, METH_O, NULL }, - { "zts_ip_addr_swigregister", zts_ip_addr_swigregister, METH_O, NULL }, - { "zts_ip_addr_swiginit", zts_ip_addr_swiginit, METH_VARARGS, NULL }, - { "zts_dns_set_server", _wrap_zts_dns_set_server, METH_VARARGS, NULL }, - { "zts_dns_get_server", _wrap_zts_dns_get_server, METH_O, NULL }, - { "zts_core_lock_obtain", _wrap_zts_core_lock_obtain, METH_NOARGS, NULL }, - { "zts_core_lock_release", _wrap_zts_core_lock_release, METH_NOARGS, NULL }, - { "zts_core_query_addr_count", _wrap_zts_core_query_addr_count, METH_O, NULL }, - { "zts_core_query_addr", _wrap_zts_core_query_addr, METH_VARARGS, NULL }, - { "zts_core_query_route_count", _wrap_zts_core_query_route_count, METH_O, NULL }, - { "zts_core_query_route", _wrap_zts_core_query_route, METH_VARARGS, NULL }, - { "zts_core_query_path_count", _wrap_zts_core_query_path_count, METH_O, NULL }, - { "zts_core_query_path", _wrap_zts_core_query_path, METH_VARARGS, NULL }, - { "zts_core_query_mc_count", _wrap_zts_core_query_mc_count, METH_O, NULL }, - { "zts_core_query_mc", _wrap_zts_core_query_mc, METH_VARARGS, NULL }, - { "zts_util_sign_root_set", _wrap_zts_util_sign_root_set, METH_VARARGS, NULL }, - { "zts_util_delay", _wrap_zts_util_delay, METH_O, NULL }, - { "zts_util_get_ip_family", _wrap_zts_util_get_ip_family, METH_O, NULL }, - { "zts_util_ipstr_to_saddr", _wrap_zts_util_ipstr_to_saddr, METH_VARARGS, NULL }, - { "zts_util_ntop", _wrap_zts_util_ntop, METH_VARARGS, NULL }, - { "zts_ipaddr_ntoa", _wrap_zts_ipaddr_ntoa, METH_O, NULL }, - { "zts_ipaddr_aton", _wrap_zts_ipaddr_aton, METH_VARARGS, NULL }, - { "zts_inet_ntop", _wrap_zts_inet_ntop, METH_VARARGS, NULL }, - { "zts_inet_pton", _wrap_zts_inet_pton, METH_VARARGS, NULL }, - { NULL, NULL, 0, NULL } + { "SWIG_PyInstanceMethod_New", SWIG_PyInstanceMethod_New, METH_O, NULL}, + { "zts_node_info_t_node_id_set", _wrap_zts_node_info_t_node_id_set, METH_VARARGS, NULL}, + { "zts_node_info_t_node_id_get", _wrap_zts_node_info_t_node_id_get, METH_O, NULL}, + { "zts_node_info_t_port_primary_set", _wrap_zts_node_info_t_port_primary_set, METH_VARARGS, NULL}, + { "zts_node_info_t_port_primary_get", _wrap_zts_node_info_t_port_primary_get, METH_O, NULL}, + { "zts_node_info_t_port_secondary_set", _wrap_zts_node_info_t_port_secondary_set, METH_VARARGS, NULL}, + { "zts_node_info_t_port_secondary_get", _wrap_zts_node_info_t_port_secondary_get, METH_O, NULL}, + { "zts_node_info_t_port_tertiary_set", _wrap_zts_node_info_t_port_tertiary_set, METH_VARARGS, NULL}, + { "zts_node_info_t_port_tertiary_get", _wrap_zts_node_info_t_port_tertiary_get, METH_O, NULL}, + { "zts_node_info_t_ver_major_set", _wrap_zts_node_info_t_ver_major_set, METH_VARARGS, NULL}, + { "zts_node_info_t_ver_major_get", _wrap_zts_node_info_t_ver_major_get, METH_O, NULL}, + { "zts_node_info_t_ver_minor_set", _wrap_zts_node_info_t_ver_minor_set, METH_VARARGS, NULL}, + { "zts_node_info_t_ver_minor_get", _wrap_zts_node_info_t_ver_minor_get, METH_O, NULL}, + { "zts_node_info_t_ver_rev_set", _wrap_zts_node_info_t_ver_rev_set, METH_VARARGS, NULL}, + { "zts_node_info_t_ver_rev_get", _wrap_zts_node_info_t_ver_rev_get, METH_O, NULL}, + { "new_zts_node_info_t", _wrap_new_zts_node_info_t, METH_NOARGS, NULL}, + { "delete_zts_node_info_t", _wrap_delete_zts_node_info_t, METH_O, NULL}, + { "zts_node_info_t_swigregister", zts_node_info_t_swigregister, METH_O, NULL}, + { "zts_node_info_t_swiginit", zts_node_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_addr_info_t_net_id_set", _wrap_zts_addr_info_t_net_id_set, METH_VARARGS, NULL}, + { "zts_addr_info_t_net_id_get", _wrap_zts_addr_info_t_net_id_get, METH_O, NULL}, + { "zts_addr_info_t_addr_set", _wrap_zts_addr_info_t_addr_set, METH_VARARGS, NULL}, + { "zts_addr_info_t_addr_get", _wrap_zts_addr_info_t_addr_get, METH_O, NULL}, + { "new_zts_addr_info_t", _wrap_new_zts_addr_info_t, METH_NOARGS, NULL}, + { "delete_zts_addr_info_t", _wrap_delete_zts_addr_info_t, METH_O, NULL}, + { "zts_addr_info_t_swigregister", zts_addr_info_t_swigregister, METH_O, NULL}, + { "zts_addr_info_t_swiginit", zts_addr_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_route_info_t_target_set", _wrap_zts_route_info_t_target_set, METH_VARARGS, NULL}, + { "zts_route_info_t_target_get", _wrap_zts_route_info_t_target_get, METH_O, NULL}, + { "zts_route_info_t_via_set", _wrap_zts_route_info_t_via_set, METH_VARARGS, NULL}, + { "zts_route_info_t_via_get", _wrap_zts_route_info_t_via_get, METH_O, NULL}, + { "zts_route_info_t_flags_set", _wrap_zts_route_info_t_flags_set, METH_VARARGS, NULL}, + { "zts_route_info_t_flags_get", _wrap_zts_route_info_t_flags_get, METH_O, NULL}, + { "zts_route_info_t_metric_set", _wrap_zts_route_info_t_metric_set, METH_VARARGS, NULL}, + { "zts_route_info_t_metric_get", _wrap_zts_route_info_t_metric_get, METH_O, NULL}, + { "new_zts_route_info_t", _wrap_new_zts_route_info_t, METH_NOARGS, NULL}, + { "delete_zts_route_info_t", _wrap_delete_zts_route_info_t, METH_O, NULL}, + { "zts_route_info_t_swigregister", zts_route_info_t_swigregister, METH_O, NULL}, + { "zts_route_info_t_swiginit", zts_route_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_multicast_group_t_mac_set", _wrap_zts_multicast_group_t_mac_set, METH_VARARGS, NULL}, + { "zts_multicast_group_t_mac_get", _wrap_zts_multicast_group_t_mac_get, METH_O, NULL}, + { "zts_multicast_group_t_adi_set", _wrap_zts_multicast_group_t_adi_set, METH_VARARGS, NULL}, + { "zts_multicast_group_t_adi_get", _wrap_zts_multicast_group_t_adi_get, METH_O, NULL}, + { "new_zts_multicast_group_t", _wrap_new_zts_multicast_group_t, METH_NOARGS, NULL}, + { "delete_zts_multicast_group_t", _wrap_delete_zts_multicast_group_t, METH_O, NULL}, + { "zts_multicast_group_t_swigregister", zts_multicast_group_t_swigregister, METH_O, NULL}, + { "zts_multicast_group_t_swiginit", zts_multicast_group_t_swiginit, METH_VARARGS, NULL}, + { "zts_net_info_t_net_id_set", _wrap_zts_net_info_t_net_id_set, METH_VARARGS, NULL}, + { "zts_net_info_t_net_id_get", _wrap_zts_net_info_t_net_id_get, METH_O, NULL}, + { "zts_net_info_t_mac_set", _wrap_zts_net_info_t_mac_set, METH_VARARGS, NULL}, + { "zts_net_info_t_mac_get", _wrap_zts_net_info_t_mac_get, METH_O, NULL}, + { "zts_net_info_t_name_set", _wrap_zts_net_info_t_name_set, METH_VARARGS, NULL}, + { "zts_net_info_t_name_get", _wrap_zts_net_info_t_name_get, METH_O, NULL}, + { "zts_net_info_t_status_set", _wrap_zts_net_info_t_status_set, METH_VARARGS, NULL}, + { "zts_net_info_t_status_get", _wrap_zts_net_info_t_status_get, METH_O, NULL}, + { "zts_net_info_t_type_set", _wrap_zts_net_info_t_type_set, METH_VARARGS, NULL}, + { "zts_net_info_t_type_get", _wrap_zts_net_info_t_type_get, METH_O, NULL}, + { "zts_net_info_t_mtu_set", _wrap_zts_net_info_t_mtu_set, METH_VARARGS, NULL}, + { "zts_net_info_t_mtu_get", _wrap_zts_net_info_t_mtu_get, METH_O, NULL}, + { "zts_net_info_t_dhcp_set", _wrap_zts_net_info_t_dhcp_set, METH_VARARGS, NULL}, + { "zts_net_info_t_dhcp_get", _wrap_zts_net_info_t_dhcp_get, METH_O, NULL}, + { "zts_net_info_t_bridge_set", _wrap_zts_net_info_t_bridge_set, METH_VARARGS, NULL}, + { "zts_net_info_t_bridge_get", _wrap_zts_net_info_t_bridge_get, METH_O, NULL}, + { "zts_net_info_t_broadcast_enabled_set", _wrap_zts_net_info_t_broadcast_enabled_set, METH_VARARGS, NULL}, + { "zts_net_info_t_broadcast_enabled_get", _wrap_zts_net_info_t_broadcast_enabled_get, METH_O, NULL}, + { "zts_net_info_t_port_error_set", _wrap_zts_net_info_t_port_error_set, METH_VARARGS, NULL}, + { "zts_net_info_t_port_error_get", _wrap_zts_net_info_t_port_error_get, METH_O, NULL}, + { "zts_net_info_t_netconf_rev_set", _wrap_zts_net_info_t_netconf_rev_set, METH_VARARGS, NULL}, + { "zts_net_info_t_netconf_rev_get", _wrap_zts_net_info_t_netconf_rev_get, METH_O, NULL}, + { "zts_net_info_t_assigned_addr_count_set", _wrap_zts_net_info_t_assigned_addr_count_set, METH_VARARGS, NULL}, + { "zts_net_info_t_assigned_addr_count_get", _wrap_zts_net_info_t_assigned_addr_count_get, METH_O, NULL}, + { "zts_net_info_t_assigned_addrs_set", _wrap_zts_net_info_t_assigned_addrs_set, METH_VARARGS, NULL}, + { "zts_net_info_t_assigned_addrs_get", _wrap_zts_net_info_t_assigned_addrs_get, METH_O, NULL}, + { "zts_net_info_t_route_count_set", _wrap_zts_net_info_t_route_count_set, METH_VARARGS, NULL}, + { "zts_net_info_t_route_count_get", _wrap_zts_net_info_t_route_count_get, METH_O, NULL}, + { "zts_net_info_t_routes_set", _wrap_zts_net_info_t_routes_set, METH_VARARGS, NULL}, + { "zts_net_info_t_routes_get", _wrap_zts_net_info_t_routes_get, METH_O, NULL}, + { "zts_net_info_t_multicast_sub_count_set", _wrap_zts_net_info_t_multicast_sub_count_set, METH_VARARGS, NULL}, + { "zts_net_info_t_multicast_sub_count_get", _wrap_zts_net_info_t_multicast_sub_count_get, METH_O, NULL}, + { "new_zts_net_info_t", _wrap_new_zts_net_info_t, METH_NOARGS, NULL}, + { "delete_zts_net_info_t", _wrap_delete_zts_net_info_t, METH_O, NULL}, + { "zts_net_info_t_swigregister", zts_net_info_t_swigregister, METH_O, NULL}, + { "zts_net_info_t_swiginit", zts_net_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_path_t_address_set", _wrap_zts_path_t_address_set, METH_VARARGS, NULL}, + { "zts_path_t_address_get", _wrap_zts_path_t_address_get, METH_O, NULL}, + { "zts_path_t_last_tx_set", _wrap_zts_path_t_last_tx_set, METH_VARARGS, NULL}, + { "zts_path_t_last_tx_get", _wrap_zts_path_t_last_tx_get, METH_O, NULL}, + { "zts_path_t_last_rx_set", _wrap_zts_path_t_last_rx_set, METH_VARARGS, NULL}, + { "zts_path_t_last_rx_get", _wrap_zts_path_t_last_rx_get, METH_O, NULL}, + { "zts_path_t_trusted_path_id_set", _wrap_zts_path_t_trusted_path_id_set, METH_VARARGS, NULL}, + { "zts_path_t_trusted_path_id_get", _wrap_zts_path_t_trusted_path_id_get, METH_O, NULL}, + { "zts_path_t_latency_set", _wrap_zts_path_t_latency_set, METH_VARARGS, NULL}, + { "zts_path_t_latency_get", _wrap_zts_path_t_latency_get, METH_O, NULL}, + { "zts_path_t_unused_0_set", _wrap_zts_path_t_unused_0_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_0_get", _wrap_zts_path_t_unused_0_get, METH_O, NULL}, + { "zts_path_t_unused_1_set", _wrap_zts_path_t_unused_1_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_1_get", _wrap_zts_path_t_unused_1_get, METH_O, NULL}, + { "zts_path_t_unused_2_set", _wrap_zts_path_t_unused_2_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_2_get", _wrap_zts_path_t_unused_2_get, METH_O, NULL}, + { "zts_path_t_unused_3_set", _wrap_zts_path_t_unused_3_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_3_get", _wrap_zts_path_t_unused_3_get, METH_O, NULL}, + { "zts_path_t_unused_4_set", _wrap_zts_path_t_unused_4_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_4_get", _wrap_zts_path_t_unused_4_get, METH_O, NULL}, + { "zts_path_t_unused_5_set", _wrap_zts_path_t_unused_5_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_5_get", _wrap_zts_path_t_unused_5_get, METH_O, NULL}, + { "zts_path_t_unused_6_set", _wrap_zts_path_t_unused_6_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_6_get", _wrap_zts_path_t_unused_6_get, METH_O, NULL}, + { "zts_path_t_unused_7_set", _wrap_zts_path_t_unused_7_set, METH_VARARGS, NULL}, + { "zts_path_t_unused_7_get", _wrap_zts_path_t_unused_7_get, METH_O, NULL}, + { "zts_path_t_ifname_set", _wrap_zts_path_t_ifname_set, METH_VARARGS, NULL}, + { "zts_path_t_ifname_get", _wrap_zts_path_t_ifname_get, METH_O, NULL}, + { "zts_path_t_expired_set", _wrap_zts_path_t_expired_set, METH_VARARGS, NULL}, + { "zts_path_t_expired_get", _wrap_zts_path_t_expired_get, METH_O, NULL}, + { "zts_path_t_preferred_set", _wrap_zts_path_t_preferred_set, METH_VARARGS, NULL}, + { "zts_path_t_preferred_get", _wrap_zts_path_t_preferred_get, METH_O, NULL}, + { "new_zts_path_t", _wrap_new_zts_path_t, METH_NOARGS, NULL}, + { "delete_zts_path_t", _wrap_delete_zts_path_t, METH_O, NULL}, + { "zts_path_t_swigregister", zts_path_t_swigregister, METH_O, NULL}, + { "zts_path_t_swiginit", zts_path_t_swiginit, METH_VARARGS, NULL}, + { "zts_peer_info_t_peer_id_set", _wrap_zts_peer_info_t_peer_id_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_peer_id_get", _wrap_zts_peer_info_t_peer_id_get, METH_O, NULL}, + { "zts_peer_info_t_ver_major_set", _wrap_zts_peer_info_t_ver_major_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_ver_major_get", _wrap_zts_peer_info_t_ver_major_get, METH_O, NULL}, + { "zts_peer_info_t_ver_minor_set", _wrap_zts_peer_info_t_ver_minor_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_ver_minor_get", _wrap_zts_peer_info_t_ver_minor_get, METH_O, NULL}, + { "zts_peer_info_t_ver_rev_set", _wrap_zts_peer_info_t_ver_rev_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_ver_rev_get", _wrap_zts_peer_info_t_ver_rev_get, METH_O, NULL}, + { "zts_peer_info_t_latency_set", _wrap_zts_peer_info_t_latency_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_latency_get", _wrap_zts_peer_info_t_latency_get, METH_O, NULL}, + { "zts_peer_info_t_role_set", _wrap_zts_peer_info_t_role_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_role_get", _wrap_zts_peer_info_t_role_get, METH_O, NULL}, + { "zts_peer_info_t_path_count_set", _wrap_zts_peer_info_t_path_count_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_path_count_get", _wrap_zts_peer_info_t_path_count_get, METH_O, NULL}, + { "zts_peer_info_t_unused_0_set", _wrap_zts_peer_info_t_unused_0_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_unused_0_get", _wrap_zts_peer_info_t_unused_0_get, METH_O, NULL}, + { "zts_peer_info_t_paths_set", _wrap_zts_peer_info_t_paths_set, METH_VARARGS, NULL}, + { "zts_peer_info_t_paths_get", _wrap_zts_peer_info_t_paths_get, METH_O, NULL}, + { "new_zts_peer_info_t", _wrap_new_zts_peer_info_t, METH_NOARGS, NULL}, + { "delete_zts_peer_info_t", _wrap_delete_zts_peer_info_t, METH_O, NULL}, + { "zts_peer_info_t_swigregister", zts_peer_info_t_swigregister, METH_O, NULL}, + { "zts_peer_info_t_swiginit", zts_peer_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_root_set_t_public_id_str_set", _wrap_zts_root_set_t_public_id_str_set, METH_VARARGS, NULL}, + { "zts_root_set_t_public_id_str_get", _wrap_zts_root_set_t_public_id_str_get, METH_O, NULL}, + { "zts_root_set_t_endpoint_ip_str_set", _wrap_zts_root_set_t_endpoint_ip_str_set, METH_VARARGS, NULL}, + { "zts_root_set_t_endpoint_ip_str_get", _wrap_zts_root_set_t_endpoint_ip_str_get, METH_O, NULL}, + { "new_zts_root_set_t", _wrap_new_zts_root_set_t, METH_NOARGS, NULL}, + { "delete_zts_root_set_t", _wrap_delete_zts_root_set_t, METH_O, NULL}, + { "zts_root_set_t_swigregister", zts_root_set_t_swigregister, METH_O, NULL}, + { "zts_root_set_t_swiginit", zts_root_set_t_swiginit, METH_VARARGS, NULL}, + { "zts_netif_info_t_net_id_set", _wrap_zts_netif_info_t_net_id_set, METH_VARARGS, NULL}, + { "zts_netif_info_t_net_id_get", _wrap_zts_netif_info_t_net_id_get, METH_O, NULL}, + { "zts_netif_info_t_mac_set", _wrap_zts_netif_info_t_mac_set, METH_VARARGS, NULL}, + { "zts_netif_info_t_mac_get", _wrap_zts_netif_info_t_mac_get, METH_O, NULL}, + { "zts_netif_info_t_mtu_set", _wrap_zts_netif_info_t_mtu_set, METH_VARARGS, NULL}, + { "zts_netif_info_t_mtu_get", _wrap_zts_netif_info_t_mtu_get, METH_O, NULL}, + { "new_zts_netif_info_t", _wrap_new_zts_netif_info_t, METH_NOARGS, NULL}, + { "delete_zts_netif_info_t", _wrap_delete_zts_netif_info_t, METH_O, NULL}, + { "zts_netif_info_t_swigregister", zts_netif_info_t_swigregister, METH_O, NULL}, + { "zts_netif_info_t_swiginit", zts_netif_info_t_swiginit, METH_VARARGS, NULL}, + { "zts_event_msg_t_event_code_set", _wrap_zts_event_msg_t_event_code_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_event_code_get", _wrap_zts_event_msg_t_event_code_get, METH_O, NULL}, + { "zts_event_msg_t_node_set", _wrap_zts_event_msg_t_node_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_node_get", _wrap_zts_event_msg_t_node_get, METH_O, NULL}, + { "zts_event_msg_t_network_set", _wrap_zts_event_msg_t_network_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_network_get", _wrap_zts_event_msg_t_network_get, METH_O, NULL}, + { "zts_event_msg_t_netif_set", _wrap_zts_event_msg_t_netif_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_netif_get", _wrap_zts_event_msg_t_netif_get, METH_O, NULL}, + { "zts_event_msg_t_route_set", _wrap_zts_event_msg_t_route_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_route_get", _wrap_zts_event_msg_t_route_get, METH_O, NULL}, + { "zts_event_msg_t_peer_set", _wrap_zts_event_msg_t_peer_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_peer_get", _wrap_zts_event_msg_t_peer_get, METH_O, NULL}, + { "zts_event_msg_t_addr_set", _wrap_zts_event_msg_t_addr_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_addr_get", _wrap_zts_event_msg_t_addr_get, METH_O, NULL}, + { "zts_event_msg_t_cache_set", _wrap_zts_event_msg_t_cache_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_cache_get", _wrap_zts_event_msg_t_cache_get, METH_O, NULL}, + { "zts_event_msg_t_len_set", _wrap_zts_event_msg_t_len_set, METH_VARARGS, NULL}, + { "zts_event_msg_t_len_get", _wrap_zts_event_msg_t_len_get, METH_O, NULL}, + { "new_zts_event_msg_t", _wrap_new_zts_event_msg_t, METH_NOARGS, NULL}, + { "delete_zts_event_msg_t", _wrap_delete_zts_event_msg_t, METH_O, NULL}, + { "zts_event_msg_t_swigregister", zts_event_msg_t_swigregister, METH_O, NULL}, + { "zts_event_msg_t_swiginit", zts_event_msg_t_swiginit, METH_VARARGS, NULL}, + { "zts_id_new", _wrap_zts_id_new, METH_VARARGS, NULL}, + { "zts_id_pair_is_valid", _wrap_zts_id_pair_is_valid, METH_VARARGS, NULL}, + { "zts_init_from_storage", _wrap_zts_init_from_storage, METH_O, NULL}, + { "zts_init_from_memory", _wrap_zts_init_from_memory, METH_VARARGS, NULL}, + { "PythonDirectorCallbackClass_on_zerotier_event", _wrap_PythonDirectorCallbackClass_on_zerotier_event, METH_VARARGS, NULL}, + { "delete_PythonDirectorCallbackClass", _wrap_delete_PythonDirectorCallbackClass, METH_O, NULL}, + { "new_PythonDirectorCallbackClass", _wrap_new_PythonDirectorCallbackClass, METH_O, NULL}, + { "disown_PythonDirectorCallbackClass", _wrap_disown_PythonDirectorCallbackClass, METH_O, NULL}, + { "PythonDirectorCallbackClass_swigregister", PythonDirectorCallbackClass_swigregister, METH_O, NULL}, + { "PythonDirectorCallbackClass_swiginit", PythonDirectorCallbackClass_swiginit, METH_VARARGS, NULL}, + { "zts_init_set_event_handler", _wrap_zts_init_set_event_handler, METH_O, NULL}, + { "zts_init_blacklist_if", _wrap_zts_init_blacklist_if, METH_VARARGS, NULL}, + { "zts_init_set_roots", _wrap_zts_init_set_roots, METH_VARARGS, NULL}, + { "zts_init_set_port", _wrap_zts_init_set_port, METH_O, NULL}, + { "zts_init_set_random_port_range", _wrap_zts_init_set_random_port_range, METH_VARARGS, NULL}, + { "zts_init_allow_secondary_port", _wrap_zts_init_allow_secondary_port, METH_O, NULL}, + { "zts_init_allow_port_mapping", _wrap_zts_init_allow_port_mapping, METH_O, NULL}, + { "zts_init_allow_net_cache", _wrap_zts_init_allow_net_cache, METH_O, NULL}, + { "zts_init_allow_peer_cache", _wrap_zts_init_allow_peer_cache, METH_O, NULL}, + { "zts_init_allow_roots_cache", _wrap_zts_init_allow_roots_cache, METH_O, NULL}, + { "zts_init_allow_id_cache", _wrap_zts_init_allow_id_cache, METH_O, NULL}, + { "zts_addr_is_assigned", _wrap_zts_addr_is_assigned, METH_VARARGS, NULL}, + { "zts_addr_get", _wrap_zts_addr_get, METH_VARARGS, NULL}, + { "zts_addr_get_str", _wrap_zts_addr_get_str, METH_VARARGS, NULL}, + { "zts_addr_get_all", _wrap_zts_addr_get_all, METH_VARARGS, NULL}, + { "zts_addr_compute_6plane", _wrap_zts_addr_compute_6plane, METH_VARARGS, NULL}, + { "zts_addr_compute_rfc4193", _wrap_zts_addr_compute_rfc4193, METH_VARARGS, NULL}, + { "zts_addr_compute_rfc4193_str", _wrap_zts_addr_compute_rfc4193_str, METH_VARARGS, NULL}, + { "zts_addr_compute_6plane_str", _wrap_zts_addr_compute_6plane_str, METH_VARARGS, NULL}, + { "zts_net_compute_adhoc_id", _wrap_zts_net_compute_adhoc_id, METH_VARARGS, NULL}, + { "zts_net_join", _wrap_zts_net_join, METH_O, NULL}, + { "zts_net_leave", _wrap_zts_net_leave, METH_O, NULL}, + { "zts_net_transport_is_ready", _wrap_zts_net_transport_is_ready, METH_O, NULL}, + { "zts_net_get_mac", _wrap_zts_net_get_mac, METH_O, NULL}, + { "zts_net_get_mac_str", _wrap_zts_net_get_mac_str, METH_VARARGS, NULL}, + { "zts_net_get_broadcast", _wrap_zts_net_get_broadcast, METH_O, NULL}, + { "zts_net_get_mtu", _wrap_zts_net_get_mtu, METH_O, NULL}, + { "zts_net_get_name", _wrap_zts_net_get_name, METH_VARARGS, NULL}, + { "zts_net_get_status", _wrap_zts_net_get_status, METH_O, NULL}, + { "zts_net_get_type", _wrap_zts_net_get_type, METH_O, NULL}, + { "zts_route_is_assigned", _wrap_zts_route_is_assigned, METH_VARARGS, NULL}, + { "zts_node_start", _wrap_zts_node_start, METH_NOARGS, NULL}, + { "zts_node_is_online", _wrap_zts_node_is_online, METH_NOARGS, NULL}, + { "zts_node_get_id", _wrap_zts_node_get_id, METH_NOARGS, NULL}, + { "zts_node_get_id_pair", _wrap_zts_node_get_id_pair, METH_VARARGS, NULL}, + { "zts_node_get_port", _wrap_zts_node_get_port, METH_NOARGS, NULL}, + { "zts_node_stop", _wrap_zts_node_stop, METH_NOARGS, NULL}, + { "zts_node_free", _wrap_zts_node_free, METH_NOARGS, NULL}, + { "zts_moon_orbit", _wrap_zts_moon_orbit, METH_VARARGS, NULL}, + { "zts_moon_deorbit", _wrap_zts_moon_deorbit, METH_O, NULL}, + { "zts_stats_counter_t_link_tx_set", _wrap_zts_stats_counter_t_link_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_link_tx_get", _wrap_zts_stats_counter_t_link_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_link_rx_set", _wrap_zts_stats_counter_t_link_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_link_rx_get", _wrap_zts_stats_counter_t_link_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_link_drop_set", _wrap_zts_stats_counter_t_link_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_link_drop_get", _wrap_zts_stats_counter_t_link_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_link_err_set", _wrap_zts_stats_counter_t_link_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_link_err_get", _wrap_zts_stats_counter_t_link_err_get, METH_O, NULL}, + { "zts_stats_counter_t_etharp_tx_set", _wrap_zts_stats_counter_t_etharp_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_etharp_tx_get", _wrap_zts_stats_counter_t_etharp_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_etharp_rx_set", _wrap_zts_stats_counter_t_etharp_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_etharp_rx_get", _wrap_zts_stats_counter_t_etharp_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_etharp_drop_set", _wrap_zts_stats_counter_t_etharp_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_etharp_drop_get", _wrap_zts_stats_counter_t_etharp_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_etharp_err_set", _wrap_zts_stats_counter_t_etharp_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_etharp_err_get", _wrap_zts_stats_counter_t_etharp_err_get, METH_O, NULL}, + { "zts_stats_counter_t_ip4_tx_set", _wrap_zts_stats_counter_t_ip4_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip4_tx_get", _wrap_zts_stats_counter_t_ip4_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_ip4_rx_set", _wrap_zts_stats_counter_t_ip4_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip4_rx_get", _wrap_zts_stats_counter_t_ip4_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_ip4_drop_set", _wrap_zts_stats_counter_t_ip4_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip4_drop_get", _wrap_zts_stats_counter_t_ip4_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_ip4_err_set", _wrap_zts_stats_counter_t_ip4_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip4_err_get", _wrap_zts_stats_counter_t_ip4_err_get, METH_O, NULL}, + { "zts_stats_counter_t_ip6_tx_set", _wrap_zts_stats_counter_t_ip6_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip6_tx_get", _wrap_zts_stats_counter_t_ip6_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_ip6_rx_set", _wrap_zts_stats_counter_t_ip6_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip6_rx_get", _wrap_zts_stats_counter_t_ip6_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_ip6_drop_set", _wrap_zts_stats_counter_t_ip6_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip6_drop_get", _wrap_zts_stats_counter_t_ip6_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_ip6_err_set", _wrap_zts_stats_counter_t_ip6_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_ip6_err_get", _wrap_zts_stats_counter_t_ip6_err_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp4_tx_set", _wrap_zts_stats_counter_t_icmp4_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp4_tx_get", _wrap_zts_stats_counter_t_icmp4_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp4_rx_set", _wrap_zts_stats_counter_t_icmp4_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp4_rx_get", _wrap_zts_stats_counter_t_icmp4_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp4_drop_set", _wrap_zts_stats_counter_t_icmp4_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp4_drop_get", _wrap_zts_stats_counter_t_icmp4_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp4_err_set", _wrap_zts_stats_counter_t_icmp4_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp4_err_get", _wrap_zts_stats_counter_t_icmp4_err_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp6_tx_set", _wrap_zts_stats_counter_t_icmp6_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp6_tx_get", _wrap_zts_stats_counter_t_icmp6_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp6_rx_set", _wrap_zts_stats_counter_t_icmp6_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp6_rx_get", _wrap_zts_stats_counter_t_icmp6_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp6_drop_set", _wrap_zts_stats_counter_t_icmp6_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp6_drop_get", _wrap_zts_stats_counter_t_icmp6_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_icmp6_err_set", _wrap_zts_stats_counter_t_icmp6_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_icmp6_err_get", _wrap_zts_stats_counter_t_icmp6_err_get, METH_O, NULL}, + { "zts_stats_counter_t_udp_tx_set", _wrap_zts_stats_counter_t_udp_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_udp_tx_get", _wrap_zts_stats_counter_t_udp_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_udp_rx_set", _wrap_zts_stats_counter_t_udp_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_udp_rx_get", _wrap_zts_stats_counter_t_udp_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_udp_drop_set", _wrap_zts_stats_counter_t_udp_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_udp_drop_get", _wrap_zts_stats_counter_t_udp_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_udp_err_set", _wrap_zts_stats_counter_t_udp_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_udp_err_get", _wrap_zts_stats_counter_t_udp_err_get, METH_O, NULL}, + { "zts_stats_counter_t_tcp_tx_set", _wrap_zts_stats_counter_t_tcp_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_tcp_tx_get", _wrap_zts_stats_counter_t_tcp_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_tcp_rx_set", _wrap_zts_stats_counter_t_tcp_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_tcp_rx_get", _wrap_zts_stats_counter_t_tcp_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_tcp_drop_set", _wrap_zts_stats_counter_t_tcp_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_tcp_drop_get", _wrap_zts_stats_counter_t_tcp_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_tcp_err_set", _wrap_zts_stats_counter_t_tcp_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_tcp_err_get", _wrap_zts_stats_counter_t_tcp_err_get, METH_O, NULL}, + { "zts_stats_counter_t_nd6_tx_set", _wrap_zts_stats_counter_t_nd6_tx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_nd6_tx_get", _wrap_zts_stats_counter_t_nd6_tx_get, METH_O, NULL}, + { "zts_stats_counter_t_nd6_rx_set", _wrap_zts_stats_counter_t_nd6_rx_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_nd6_rx_get", _wrap_zts_stats_counter_t_nd6_rx_get, METH_O, NULL}, + { "zts_stats_counter_t_nd6_drop_set", _wrap_zts_stats_counter_t_nd6_drop_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_nd6_drop_get", _wrap_zts_stats_counter_t_nd6_drop_get, METH_O, NULL}, + { "zts_stats_counter_t_nd6_err_set", _wrap_zts_stats_counter_t_nd6_err_set, METH_VARARGS, NULL}, + { "zts_stats_counter_t_nd6_err_get", _wrap_zts_stats_counter_t_nd6_err_get, METH_O, NULL}, + { "new_zts_stats_counter_t", _wrap_new_zts_stats_counter_t, METH_NOARGS, NULL}, + { "delete_zts_stats_counter_t", _wrap_delete_zts_stats_counter_t, METH_O, NULL}, + { "zts_stats_counter_t_swigregister", zts_stats_counter_t_swigregister, METH_O, NULL}, + { "zts_stats_counter_t_swiginit", zts_stats_counter_t_swiginit, METH_VARARGS, NULL}, + { "zts_stats_get_all", _wrap_zts_stats_get_all, METH_O, NULL}, + { "zts_bsd_socket", _wrap_zts_bsd_socket, METH_VARARGS, NULL}, + { "zts_bsd_connect", _wrap_zts_bsd_connect, METH_VARARGS, NULL}, + { "zts_bsd_bind", _wrap_zts_bsd_bind, METH_VARARGS, NULL}, + { "zts_bsd_listen", _wrap_zts_bsd_listen, METH_VARARGS, NULL}, + { "zts_bsd_accept", _wrap_zts_bsd_accept, METH_VARARGS, NULL}, + { "zts_bsd_setsockopt", _wrap_zts_bsd_setsockopt, METH_VARARGS, NULL}, + { "zts_bsd_getsockopt", _wrap_zts_bsd_getsockopt, METH_VARARGS, NULL}, + { "zts_bsd_getsockname", _wrap_zts_bsd_getsockname, METH_VARARGS, NULL}, + { "zts_bsd_getpeername", _wrap_zts_bsd_getpeername, METH_VARARGS, NULL}, + { "zts_bsd_close", _wrap_zts_bsd_close, METH_O, NULL}, + { "zts_timeval_tv_sec_set", _wrap_zts_timeval_tv_sec_set, METH_VARARGS, NULL}, + { "zts_timeval_tv_sec_get", _wrap_zts_timeval_tv_sec_get, METH_O, NULL}, + { "zts_timeval_tv_usec_set", _wrap_zts_timeval_tv_usec_set, METH_VARARGS, NULL}, + { "zts_timeval_tv_usec_get", _wrap_zts_timeval_tv_usec_get, METH_O, NULL}, + { "new_zts_timeval", _wrap_new_zts_timeval, METH_NOARGS, NULL}, + { "delete_zts_timeval", _wrap_delete_zts_timeval, METH_O, NULL}, + { "zts_timeval_swigregister", zts_timeval_swigregister, METH_O, NULL}, + { "zts_timeval_swiginit", zts_timeval_swiginit, METH_VARARGS, NULL}, + { "zts_bsd_select", _wrap_zts_bsd_select, METH_VARARGS, NULL}, + { "zts_bsd_fcntl", _wrap_zts_bsd_fcntl, METH_VARARGS, NULL}, + { "zts_bsd_poll", _wrap_zts_bsd_poll, METH_VARARGS, NULL}, + { "zts_bsd_ioctl", _wrap_zts_bsd_ioctl, METH_VARARGS, NULL}, + { "zts_bsd_send", _wrap_zts_bsd_send, METH_VARARGS, NULL}, + { "zts_bsd_sendto", _wrap_zts_bsd_sendto, METH_VARARGS, NULL}, + { "zts_iovec_iov_base_set", _wrap_zts_iovec_iov_base_set, METH_VARARGS, NULL}, + { "zts_iovec_iov_base_get", _wrap_zts_iovec_iov_base_get, METH_O, NULL}, + { "zts_iovec_iov_len_set", _wrap_zts_iovec_iov_len_set, METH_VARARGS, NULL}, + { "zts_iovec_iov_len_get", _wrap_zts_iovec_iov_len_get, METH_O, NULL}, + { "new_zts_iovec", _wrap_new_zts_iovec, METH_NOARGS, NULL}, + { "delete_zts_iovec", _wrap_delete_zts_iovec, METH_O, NULL}, + { "zts_iovec_swigregister", zts_iovec_swigregister, METH_O, NULL}, + { "zts_iovec_swiginit", zts_iovec_swiginit, METH_VARARGS, NULL}, + { "zts_bsd_sendmsg", _wrap_zts_bsd_sendmsg, METH_VARARGS, NULL}, + { "zts_bsd_recv", _wrap_zts_bsd_recv, METH_VARARGS, NULL}, + { "zts_bsd_recvfrom", _wrap_zts_bsd_recvfrom, METH_VARARGS, NULL}, + { "zts_bsd_recvmsg", _wrap_zts_bsd_recvmsg, METH_VARARGS, NULL}, + { "zts_bsd_read", _wrap_zts_bsd_read, METH_VARARGS, NULL}, + { "zts_bsd_readv", _wrap_zts_bsd_readv, METH_VARARGS, NULL}, + { "zts_bsd_write", _wrap_zts_bsd_write, METH_VARARGS, NULL}, + { "zts_bsd_writev", _wrap_zts_bsd_writev, METH_VARARGS, NULL}, + { "zts_bsd_shutdown", _wrap_zts_bsd_shutdown, METH_VARARGS, NULL}, + { "zts_socket", _wrap_zts_socket, METH_VARARGS, NULL}, + { "zts_connect", _wrap_zts_connect, METH_VARARGS, NULL}, + { "zts_bind", _wrap_zts_bind, METH_VARARGS, NULL}, + { "zts_listen", _wrap_zts_listen, METH_VARARGS, NULL}, + { "zts_accept", _wrap_zts_accept, METH_VARARGS, NULL}, + { "zts_send", _wrap_zts_send, METH_VARARGS, NULL}, + { "zts_recv", _wrap_zts_recv, METH_VARARGS, NULL}, + { "zts_read", _wrap_zts_read, METH_VARARGS, NULL}, + { "zts_write", _wrap_zts_write, METH_VARARGS, NULL}, + { "zts_shutdown_rd", _wrap_zts_shutdown_rd, METH_O, NULL}, + { "zts_shutdown_wr", _wrap_zts_shutdown_wr, METH_O, NULL}, + { "zts_shutdown_rdwr", _wrap_zts_shutdown_rdwr, METH_O, NULL}, + { "zts_close", _wrap_zts_close, METH_O, NULL}, + { "zts_getpeername", _wrap_zts_getpeername, METH_VARARGS, NULL}, + { "zts_getsockname", _wrap_zts_getsockname, METH_VARARGS, NULL}, + { "zts_tcp_client", _wrap_zts_tcp_client, METH_VARARGS, NULL}, + { "zts_tcp_server", _wrap_zts_tcp_server, METH_VARARGS, NULL}, + { "zts_udp_server", _wrap_zts_udp_server, METH_VARARGS, NULL}, + { "zts_udp_client", _wrap_zts_udp_client, METH_O, NULL}, + { "zts_set_no_delay", _wrap_zts_set_no_delay, METH_VARARGS, NULL}, + { "zts_get_last_socket_error", _wrap_zts_get_last_socket_error, METH_O, NULL}, + { "zts_get_data_available", _wrap_zts_get_data_available, METH_O, NULL}, + { "zts_get_no_delay", _wrap_zts_get_no_delay, METH_O, NULL}, + { "zts_set_linger", _wrap_zts_set_linger, METH_VARARGS, NULL}, + { "zts_get_linger_enabled", _wrap_zts_get_linger_enabled, METH_O, NULL}, + { "zts_get_linger_value", _wrap_zts_get_linger_value, METH_O, NULL}, + { "zts_get_pending_data_size", _wrap_zts_get_pending_data_size, METH_O, NULL}, + { "zts_set_reuse_addr", _wrap_zts_set_reuse_addr, METH_VARARGS, NULL}, + { "zts_get_reuse_addr", _wrap_zts_get_reuse_addr, METH_O, NULL}, + { "zts_set_recv_timeout", _wrap_zts_set_recv_timeout, METH_VARARGS, NULL}, + { "zts_get_recv_timeout", _wrap_zts_get_recv_timeout, METH_O, NULL}, + { "zts_set_send_timeout", _wrap_zts_set_send_timeout, METH_VARARGS, NULL}, + { "zts_get_send_timeout", _wrap_zts_get_send_timeout, METH_O, NULL}, + { "zts_set_send_buf_size", _wrap_zts_set_send_buf_size, METH_VARARGS, NULL}, + { "zts_get_send_buf_size", _wrap_zts_get_send_buf_size, METH_O, NULL}, + { "zts_set_recv_buf_size", _wrap_zts_set_recv_buf_size, METH_VARARGS, NULL}, + { "zts_get_recv_buf_size", _wrap_zts_get_recv_buf_size, METH_O, NULL}, + { "zts_set_ttl", _wrap_zts_set_ttl, METH_VARARGS, NULL}, + { "zts_get_ttl", _wrap_zts_get_ttl, METH_O, NULL}, + { "zts_set_blocking", _wrap_zts_set_blocking, METH_VARARGS, NULL}, + { "zts_get_blocking", _wrap_zts_get_blocking, METH_O, NULL}, + { "zts_set_keepalive", _wrap_zts_set_keepalive, METH_VARARGS, NULL}, + { "zts_get_keepalive", _wrap_zts_get_keepalive, METH_O, NULL}, + { "zts_hostent_h_name_set", _wrap_zts_hostent_h_name_set, METH_VARARGS, NULL}, + { "zts_hostent_h_name_get", _wrap_zts_hostent_h_name_get, METH_O, NULL}, + { "zts_hostent_h_aliases_set", _wrap_zts_hostent_h_aliases_set, METH_VARARGS, NULL}, + { "zts_hostent_h_aliases_get", _wrap_zts_hostent_h_aliases_get, METH_O, NULL}, + { "zts_hostent_h_addrtype_set", _wrap_zts_hostent_h_addrtype_set, METH_VARARGS, NULL}, + { "zts_hostent_h_addrtype_get", _wrap_zts_hostent_h_addrtype_get, METH_O, NULL}, + { "zts_hostent_h_length_set", _wrap_zts_hostent_h_length_set, METH_VARARGS, NULL}, + { "zts_hostent_h_length_get", _wrap_zts_hostent_h_length_get, METH_O, NULL}, + { "zts_hostent_h_addr_list_set", _wrap_zts_hostent_h_addr_list_set, METH_VARARGS, NULL}, + { "zts_hostent_h_addr_list_get", _wrap_zts_hostent_h_addr_list_get, METH_O, NULL}, + { "new_zts_hostent", _wrap_new_zts_hostent, METH_NOARGS, NULL}, + { "delete_zts_hostent", _wrap_delete_zts_hostent, METH_O, NULL}, + { "zts_hostent_swigregister", zts_hostent_swigregister, METH_O, NULL}, + { "zts_hostent_swiginit", zts_hostent_swiginit, METH_VARARGS, NULL}, + { "zts_bsd_gethostbyname", _wrap_zts_bsd_gethostbyname, METH_O, NULL}, + { "zts_ip4_addr_addr_set", _wrap_zts_ip4_addr_addr_set, METH_VARARGS, NULL}, + { "zts_ip4_addr_addr_get", _wrap_zts_ip4_addr_addr_get, METH_O, NULL}, + { "new_zts_ip4_addr", _wrap_new_zts_ip4_addr, METH_NOARGS, NULL}, + { "delete_zts_ip4_addr", _wrap_delete_zts_ip4_addr, METH_O, NULL}, + { "zts_ip4_addr_swigregister", zts_ip4_addr_swigregister, METH_O, NULL}, + { "zts_ip4_addr_swiginit", zts_ip4_addr_swiginit, METH_VARARGS, NULL}, + { "zts_ip6_addr_addr_set", _wrap_zts_ip6_addr_addr_set, METH_VARARGS, NULL}, + { "zts_ip6_addr_addr_get", _wrap_zts_ip6_addr_addr_get, METH_O, NULL}, + { "new_zts_ip6_addr", _wrap_new_zts_ip6_addr, METH_NOARGS, NULL}, + { "delete_zts_ip6_addr", _wrap_delete_zts_ip6_addr, METH_O, NULL}, + { "zts_ip6_addr_swigregister", zts_ip6_addr_swigregister, METH_O, NULL}, + { "zts_ip6_addr_swiginit", zts_ip6_addr_swiginit, METH_VARARGS, NULL}, + { "zts_ip_addr_type_set", _wrap_zts_ip_addr_type_set, METH_VARARGS, NULL}, + { "zts_ip_addr_type_get", _wrap_zts_ip_addr_type_get, METH_O, NULL}, + { "new_zts_ip_addr", _wrap_new_zts_ip_addr, METH_NOARGS, NULL}, + { "delete_zts_ip_addr", _wrap_delete_zts_ip_addr, METH_O, NULL}, + { "zts_ip_addr_swigregister", zts_ip_addr_swigregister, METH_O, NULL}, + { "zts_ip_addr_swiginit", zts_ip_addr_swiginit, METH_VARARGS, NULL}, + { "zts_dns_set_server", _wrap_zts_dns_set_server, METH_VARARGS, NULL}, + { "zts_dns_get_server", _wrap_zts_dns_get_server, METH_O, NULL}, + { "zts_core_lock_obtain", _wrap_zts_core_lock_obtain, METH_NOARGS, NULL}, + { "zts_core_lock_release", _wrap_zts_core_lock_release, METH_NOARGS, NULL}, + { "zts_core_query_addr_count", _wrap_zts_core_query_addr_count, METH_O, NULL}, + { "zts_core_query_addr", _wrap_zts_core_query_addr, METH_VARARGS, NULL}, + { "zts_core_query_route_count", _wrap_zts_core_query_route_count, METH_O, NULL}, + { "zts_core_query_route", _wrap_zts_core_query_route, METH_VARARGS, NULL}, + { "zts_core_query_path_count", _wrap_zts_core_query_path_count, METH_O, NULL}, + { "zts_core_query_path", _wrap_zts_core_query_path, METH_VARARGS, NULL}, + { "zts_core_query_mc_count", _wrap_zts_core_query_mc_count, METH_O, NULL}, + { "zts_core_query_mc", _wrap_zts_core_query_mc, METH_VARARGS, NULL}, + { "zts_util_sign_root_set", _wrap_zts_util_sign_root_set, METH_VARARGS, NULL}, + { "zts_util_delay", _wrap_zts_util_delay, METH_O, NULL}, + { "zts_util_get_ip_family", _wrap_zts_util_get_ip_family, METH_O, NULL}, + { "zts_util_ipstr_to_saddr", _wrap_zts_util_ipstr_to_saddr, METH_VARARGS, NULL}, + { "zts_util_ntop", _wrap_zts_util_ntop, METH_VARARGS, NULL}, + { "zts_ipaddr_ntoa", _wrap_zts_ipaddr_ntoa, METH_O, NULL}, + { "zts_ipaddr_aton", _wrap_zts_ipaddr_aton, METH_VARARGS, NULL}, + { "zts_inet_ntop", _wrap_zts_inet_ntop, METH_VARARGS, NULL}, + { "zts_inet_pton", _wrap_zts_inet_pton, METH_VARARGS, NULL}, + { "zts_py_bind", _wrap_zts_py_bind, METH_VARARGS, NULL}, + { "zts_py_connect", _wrap_zts_py_connect, METH_VARARGS, NULL}, + { "zts_py_accept", _wrap_zts_py_accept, METH_O, NULL}, + { "zts_py_listen", _wrap_zts_py_listen, METH_VARARGS, NULL}, + { "zts_py_recv", _wrap_zts_py_recv, METH_VARARGS, NULL}, + { "zts_py_send", _wrap_zts_py_send, METH_VARARGS, NULL}, + { "zts_py_close", _wrap_zts_py_close, METH_O, NULL}, + { "zts_py_setblocking", _wrap_zts_py_setblocking, METH_VARARGS, NULL}, + { "zts_py_getblocking", _wrap_zts_py_getblocking, METH_O, NULL}, + { "zts_py_addr_get_str", _wrap_zts_py_addr_get_str, METH_VARARGS, NULL}, + { NULL, NULL, 0, NULL } +}; + +static PyMethodDef SwigMethods_proxydocs[] = { + { NULL, NULL, 0, NULL } }; -static PyMethodDef SwigMethods_proxydocs[] = { { NULL, NULL, 0, NULL } }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ -static swig_type_info _swigt__p_PythonDirectorCallbackClass = { - "_p_PythonDirectorCallbackClass", "PythonDirectorCallbackClass *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_a_32__p_char = { "_p_a_32__p_char", "char *(*)[32]", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_char = { "_p_char", "char *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_int = { - "_p_int", "intptr_t *|int *|int_least32_t *|int_fast32_t *|int32_t *|int_fast16_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_long_long = { - "_p_long_long", "int_least64_t *|int_fast64_t *|int64_t *|long long *|intmax_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_p_char = { "_p_p_char", "char **", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_short = { "_p_short", "short *|int_least16_t *|int16_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_signed_char = { - "_p_signed_char", "signed char *|int_least8_t *|int_fast8_t *|int8_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_ssize_t = { "_p_ssize_t", "ssize_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_unsigned_char = { - "_p_unsigned_char", "unsigned char *|zts_sa_family_t *|uint_least8_t *|uint_fast8_t *|uint8_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_unsigned_int = { "_p_unsigned_int", - "uintptr_t *|uint_least32_t *|uint_fast32_t *|uint32_t *|unsigned int " - "*|zts_in_addr_t *|zts_socklen_t *|uint_fast16_t *", - 0, - 0, - (void*)0, - 0 }; -static swig_type_info _swigt__p_unsigned_long_long = { - "_p_unsigned_long_long", - "uint_least64_t *|uint_fast64_t *|uint64_t *|unsigned long long *|uintmax_t *", - 0, - 0, - (void*)0, - 0 -}; -static swig_type_info _swigt__p_unsigned_short = { - "_p_unsigned_short", "unsigned short *|zts_in_port_t *|uint_least16_t *|uint16_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_void = { "_p_void", "void *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_addr_info_t = { "_p_zts_addr_info_t", "zts_addr_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_errno_t = { - "_p_zts_errno_t", "enum zts_errno_t *|zts_errno_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_error_t = { - "_p_zts_error_t", "enum zts_error_t *|zts_error_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_event_msg_t = { "_p_zts_event_msg_t", "zts_event_msg_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_event_t = { - "_p_zts_event_t", "enum zts_event_t *|zts_event_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_fd_set = { "_p_zts_fd_set", "zts_fd_set *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_hostent = { "_p_zts_hostent", "zts_hostent *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_iovec = { "_p_zts_iovec", "zts_iovec *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_ip4_addr = { "_p_zts_ip4_addr", "zts_ip4_addr *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_ip6_addr = { "_p_zts_ip6_addr", "zts_ip6_addr *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_ip_addr = { "_p_zts_ip_addr", "zts_ip_addr *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_msghdr = { "_p_zts_msghdr", "zts_msghdr *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_multicast_group_t = { - "_p_zts_multicast_group_t", "zts_multicast_group_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_net_info_t = { "_p_zts_net_info_t", "zts_net_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_net_info_type_t = { - "_p_zts_net_info_type_t", "enum zts_net_info_type_t *|zts_net_info_type_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_netif_info_t = { "_p_zts_netif_info_t", "zts_netif_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_network_status_t = { - "_p_zts_network_status_t", "enum zts_network_status_t *|zts_network_status_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_node_info_t = { "_p_zts_node_info_t", "zts_node_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_path_t = { "_p_zts_path_t", "zts_path_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_peer_info_t = { "_p_zts_peer_info_t", "zts_peer_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_peer_role_t = { - "_p_zts_peer_role_t", "enum zts_peer_role_t *|zts_peer_role_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_pollfd = { "_p_zts_pollfd", "zts_pollfd *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_root_set_t = { "_p_zts_root_set_t", "zts_root_set_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_route_info_t = { "_p_zts_route_info_t", "zts_route_info_t *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_sockaddr = { "_p_zts_sockaddr", "zts_sockaddr *", 0, 0, (void*)0, 0 }; -static swig_type_info _swigt__p_zts_sockaddr_storage = { - "_p_zts_sockaddr_storage", "zts_sockaddr_storage *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_stats_counter_t = { - "_p_zts_stats_counter_t", "zts_stats_counter_t *", 0, 0, (void*)0, 0 -}; -static swig_type_info _swigt__p_zts_timeval = { "_p_zts_timeval", "zts_timeval *", 0, 0, (void*)0, 0 }; +static swig_type_info _swigt__p_PythonDirectorCallbackClass = {"_p_PythonDirectorCallbackClass", "PythonDirectorCallbackClass *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_a_32__p_char = {"_p_a_32__p_char", "char *(*)[32]", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_int = {"_p_int", "intptr_t *|int *|int_least32_t *|int_fast32_t *|int32_t *|int_fast16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_long_long = {"_p_long_long", "int_least64_t *|int_fast64_t *|int64_t *|long long *|intmax_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_short = {"_p_short", "short *|int_least16_t *|int16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "signed char *|int_least8_t *|int_fast8_t *|int8_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ssize_t = {"_p_ssize_t", "ssize_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "unsigned char *|zts_sa_family_t *|uint_least8_t *|uint_fast8_t *|uint8_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "uintptr_t *|uint_least32_t *|uint_fast32_t *|uint32_t *|unsigned int *|zts_in_addr_t *|zts_socklen_t *|uint_fast16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_long_long = {"_p_unsigned_long_long", "uint_least64_t *|uint_fast64_t *|uint64_t *|unsigned long long *|uintmax_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|zts_in_port_t *|uint_least16_t *|uint16_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_addr_info_t = {"_p_zts_addr_info_t", "zts_addr_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_errno_t = {"_p_zts_errno_t", "enum zts_errno_t *|zts_errno_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_error_t = {"_p_zts_error_t", "enum zts_error_t *|zts_error_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_event_msg_t = {"_p_zts_event_msg_t", "zts_event_msg_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_event_t = {"_p_zts_event_t", "enum zts_event_t *|zts_event_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_fd_set = {"_p_zts_fd_set", "zts_fd_set *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_hostent = {"_p_zts_hostent", "zts_hostent *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_iovec = {"_p_zts_iovec", "zts_iovec *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_ip4_addr = {"_p_zts_ip4_addr", "zts_ip4_addr *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_ip6_addr = {"_p_zts_ip6_addr", "zts_ip6_addr *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_ip_addr = {"_p_zts_ip_addr", "zts_ip_addr *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_msghdr = {"_p_zts_msghdr", "zts_msghdr *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_multicast_group_t = {"_p_zts_multicast_group_t", "zts_multicast_group_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_net_info_t = {"_p_zts_net_info_t", "zts_net_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_net_info_type_t = {"_p_zts_net_info_type_t", "enum zts_net_info_type_t *|zts_net_info_type_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_netif_info_t = {"_p_zts_netif_info_t", "zts_netif_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_network_status_t = {"_p_zts_network_status_t", "enum zts_network_status_t *|zts_network_status_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_node_info_t = {"_p_zts_node_info_t", "zts_node_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_path_t = {"_p_zts_path_t", "zts_path_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_peer_info_t = {"_p_zts_peer_info_t", "zts_peer_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_peer_role_t = {"_p_zts_peer_role_t", "enum zts_peer_role_t *|zts_peer_role_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_pollfd = {"_p_zts_pollfd", "zts_pollfd *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_root_set_t = {"_p_zts_root_set_t", "zts_root_set_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_route_info_t = {"_p_zts_route_info_t", "zts_route_info_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_sockaddr = {"_p_zts_sockaddr", "zts_sockaddr *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_sockaddr_storage = {"_p_zts_sockaddr_storage", "zts_sockaddr_storage *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_stats_counter_t = {"_p_zts_stats_counter_t", "zts_stats_counter_t *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_zts_timeval = {"_p_zts_timeval", "zts_timeval *", 0, 0, (void*)0, 0}; -static swig_type_info* swig_type_initial[] = { - &_swigt__p_PythonDirectorCallbackClass, - &_swigt__p_a_32__p_char, - &_swigt__p_char, - &_swigt__p_int, - &_swigt__p_long_long, - &_swigt__p_p_char, - &_swigt__p_short, - &_swigt__p_signed_char, - &_swigt__p_ssize_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_int, - &_swigt__p_unsigned_long_long, - &_swigt__p_unsigned_short, - &_swigt__p_void, - &_swigt__p_zts_addr_info_t, - &_swigt__p_zts_errno_t, - &_swigt__p_zts_error_t, - &_swigt__p_zts_event_msg_t, - &_swigt__p_zts_event_t, - &_swigt__p_zts_fd_set, - &_swigt__p_zts_hostent, - &_swigt__p_zts_iovec, - &_swigt__p_zts_ip4_addr, - &_swigt__p_zts_ip6_addr, - &_swigt__p_zts_ip_addr, - &_swigt__p_zts_msghdr, - &_swigt__p_zts_multicast_group_t, - &_swigt__p_zts_net_info_t, - &_swigt__p_zts_net_info_type_t, - &_swigt__p_zts_netif_info_t, - &_swigt__p_zts_network_status_t, - &_swigt__p_zts_node_info_t, - &_swigt__p_zts_path_t, - &_swigt__p_zts_peer_info_t, - &_swigt__p_zts_peer_role_t, - &_swigt__p_zts_pollfd, - &_swigt__p_zts_root_set_t, - &_swigt__p_zts_route_info_t, - &_swigt__p_zts_sockaddr, - &_swigt__p_zts_sockaddr_storage, - &_swigt__p_zts_stats_counter_t, - &_swigt__p_zts_timeval, +static swig_type_info *swig_type_initial[] = { + &_swigt__p_PythonDirectorCallbackClass, + &_swigt__p_a_32__p_char, + &_swigt__p_char, + &_swigt__p_int, + &_swigt__p_long_long, + &_swigt__p_p_char, + &_swigt__p_short, + &_swigt__p_signed_char, + &_swigt__p_ssize_t, + &_swigt__p_unsigned_char, + &_swigt__p_unsigned_int, + &_swigt__p_unsigned_long_long, + &_swigt__p_unsigned_short, + &_swigt__p_void, + &_swigt__p_zts_addr_info_t, + &_swigt__p_zts_errno_t, + &_swigt__p_zts_error_t, + &_swigt__p_zts_event_msg_t, + &_swigt__p_zts_event_t, + &_swigt__p_zts_fd_set, + &_swigt__p_zts_hostent, + &_swigt__p_zts_iovec, + &_swigt__p_zts_ip4_addr, + &_swigt__p_zts_ip6_addr, + &_swigt__p_zts_ip_addr, + &_swigt__p_zts_msghdr, + &_swigt__p_zts_multicast_group_t, + &_swigt__p_zts_net_info_t, + &_swigt__p_zts_net_info_type_t, + &_swigt__p_zts_netif_info_t, + &_swigt__p_zts_network_status_t, + &_swigt__p_zts_node_info_t, + &_swigt__p_zts_path_t, + &_swigt__p_zts_peer_info_t, + &_swigt__p_zts_peer_role_t, + &_swigt__p_zts_pollfd, + &_swigt__p_zts_root_set_t, + &_swigt__p_zts_route_info_t, + &_swigt__p_zts_sockaddr, + &_swigt__p_zts_sockaddr_storage, + &_swigt__p_zts_stats_counter_t, + &_swigt__p_zts_timeval, }; -static swig_cast_info _swigc__p_PythonDirectorCallbackClass[] = { { &_swigt__p_PythonDirectorCallbackClass, 0, 0, 0 }, - { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_a_32__p_char[] = { { &_swigt__p_a_32__p_char, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_char[] = { { &_swigt__p_char, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_int[] = { { &_swigt__p_int, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_long_long[] = { { &_swigt__p_long_long, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_p_char[] = { { &_swigt__p_p_char, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_short[] = { { &_swigt__p_short, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_signed_char[] = { { &_swigt__p_signed_char, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_ssize_t[] = { { &_swigt__p_ssize_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_unsigned_char[] = { { &_swigt__p_unsigned_char, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_unsigned_int[] = { { &_swigt__p_unsigned_int, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_unsigned_long_long[] = { { &_swigt__p_unsigned_long_long, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_unsigned_short[] = { { &_swigt__p_unsigned_short, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_void[] = { { &_swigt__p_void, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_addr_info_t[] = { { &_swigt__p_zts_addr_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_errno_t[] = { { &_swigt__p_zts_errno_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_error_t[] = { { &_swigt__p_zts_error_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_event_msg_t[] = { { &_swigt__p_zts_event_msg_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_event_t[] = { { &_swigt__p_zts_event_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_fd_set[] = { { &_swigt__p_zts_fd_set, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_hostent[] = { { &_swigt__p_zts_hostent, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_iovec[] = { { &_swigt__p_zts_iovec, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_ip4_addr[] = { { &_swigt__p_zts_ip4_addr, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_ip6_addr[] = { { &_swigt__p_zts_ip6_addr, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_ip_addr[] = { { &_swigt__p_zts_ip_addr, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_msghdr[] = { { &_swigt__p_zts_msghdr, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_multicast_group_t[] = { { &_swigt__p_zts_multicast_group_t, 0, 0, 0 }, - { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_net_info_t[] = { { &_swigt__p_zts_net_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_net_info_type_t[] = { { &_swigt__p_zts_net_info_type_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_netif_info_t[] = { { &_swigt__p_zts_netif_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_network_status_t[] = { { &_swigt__p_zts_network_status_t, 0, 0, 0 }, - { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_node_info_t[] = { { &_swigt__p_zts_node_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_path_t[] = { { &_swigt__p_zts_path_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_peer_info_t[] = { { &_swigt__p_zts_peer_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_peer_role_t[] = { { &_swigt__p_zts_peer_role_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_pollfd[] = { { &_swigt__p_zts_pollfd, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_root_set_t[] = { { &_swigt__p_zts_root_set_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_route_info_t[] = { { &_swigt__p_zts_route_info_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_sockaddr[] = { { &_swigt__p_zts_sockaddr, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_sockaddr_storage[] = { { &_swigt__p_zts_sockaddr_storage, 0, 0, 0 }, - { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_stats_counter_t[] = { { &_swigt__p_zts_stats_counter_t, 0, 0, 0 }, { 0, 0, 0, 0 } }; -static swig_cast_info _swigc__p_zts_timeval[] = { { &_swigt__p_zts_timeval, 0, 0, 0 }, { 0, 0, 0, 0 } }; +static swig_cast_info _swigc__p_PythonDirectorCallbackClass[] = { {&_swigt__p_PythonDirectorCallbackClass, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_a_32__p_char[] = { {&_swigt__p_a_32__p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_long_long[] = { {&_swigt__p_long_long, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ssize_t[] = { {&_swigt__p_ssize_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_long_long[] = { {&_swigt__p_unsigned_long_long, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_addr_info_t[] = { {&_swigt__p_zts_addr_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_errno_t[] = { {&_swigt__p_zts_errno_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_error_t[] = { {&_swigt__p_zts_error_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_event_msg_t[] = { {&_swigt__p_zts_event_msg_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_event_t[] = { {&_swigt__p_zts_event_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_fd_set[] = { {&_swigt__p_zts_fd_set, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_hostent[] = { {&_swigt__p_zts_hostent, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_iovec[] = { {&_swigt__p_zts_iovec, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_ip4_addr[] = { {&_swigt__p_zts_ip4_addr, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_ip6_addr[] = { {&_swigt__p_zts_ip6_addr, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_ip_addr[] = { {&_swigt__p_zts_ip_addr, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_msghdr[] = { {&_swigt__p_zts_msghdr, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_multicast_group_t[] = { {&_swigt__p_zts_multicast_group_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_net_info_t[] = { {&_swigt__p_zts_net_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_net_info_type_t[] = { {&_swigt__p_zts_net_info_type_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_netif_info_t[] = { {&_swigt__p_zts_netif_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_network_status_t[] = { {&_swigt__p_zts_network_status_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_node_info_t[] = { {&_swigt__p_zts_node_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_path_t[] = { {&_swigt__p_zts_path_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_peer_info_t[] = { {&_swigt__p_zts_peer_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_peer_role_t[] = { {&_swigt__p_zts_peer_role_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_pollfd[] = { {&_swigt__p_zts_pollfd, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_root_set_t[] = { {&_swigt__p_zts_root_set_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_route_info_t[] = { {&_swigt__p_zts_route_info_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_sockaddr[] = { {&_swigt__p_zts_sockaddr, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_sockaddr_storage[] = { {&_swigt__p_zts_sockaddr_storage, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_stats_counter_t[] = { {&_swigt__p_zts_stats_counter_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_zts_timeval[] = { {&_swigt__p_zts_timeval, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info* swig_cast_initial[] = { - _swigc__p_PythonDirectorCallbackClass, - _swigc__p_a_32__p_char, - _swigc__p_char, - _swigc__p_int, - _swigc__p_long_long, - _swigc__p_p_char, - _swigc__p_short, - _swigc__p_signed_char, - _swigc__p_ssize_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_int, - _swigc__p_unsigned_long_long, - _swigc__p_unsigned_short, - _swigc__p_void, - _swigc__p_zts_addr_info_t, - _swigc__p_zts_errno_t, - _swigc__p_zts_error_t, - _swigc__p_zts_event_msg_t, - _swigc__p_zts_event_t, - _swigc__p_zts_fd_set, - _swigc__p_zts_hostent, - _swigc__p_zts_iovec, - _swigc__p_zts_ip4_addr, - _swigc__p_zts_ip6_addr, - _swigc__p_zts_ip_addr, - _swigc__p_zts_msghdr, - _swigc__p_zts_multicast_group_t, - _swigc__p_zts_net_info_t, - _swigc__p_zts_net_info_type_t, - _swigc__p_zts_netif_info_t, - _swigc__p_zts_network_status_t, - _swigc__p_zts_node_info_t, - _swigc__p_zts_path_t, - _swigc__p_zts_peer_info_t, - _swigc__p_zts_peer_role_t, - _swigc__p_zts_pollfd, - _swigc__p_zts_root_set_t, - _swigc__p_zts_route_info_t, - _swigc__p_zts_sockaddr, - _swigc__p_zts_sockaddr_storage, - _swigc__p_zts_stats_counter_t, - _swigc__p_zts_timeval, +static swig_cast_info *swig_cast_initial[] = { + _swigc__p_PythonDirectorCallbackClass, + _swigc__p_a_32__p_char, + _swigc__p_char, + _swigc__p_int, + _swigc__p_long_long, + _swigc__p_p_char, + _swigc__p_short, + _swigc__p_signed_char, + _swigc__p_ssize_t, + _swigc__p_unsigned_char, + _swigc__p_unsigned_int, + _swigc__p_unsigned_long_long, + _swigc__p_unsigned_short, + _swigc__p_void, + _swigc__p_zts_addr_info_t, + _swigc__p_zts_errno_t, + _swigc__p_zts_error_t, + _swigc__p_zts_event_msg_t, + _swigc__p_zts_event_t, + _swigc__p_zts_fd_set, + _swigc__p_zts_hostent, + _swigc__p_zts_iovec, + _swigc__p_zts_ip4_addr, + _swigc__p_zts_ip6_addr, + _swigc__p_zts_ip_addr, + _swigc__p_zts_msghdr, + _swigc__p_zts_multicast_group_t, + _swigc__p_zts_net_info_t, + _swigc__p_zts_net_info_type_t, + _swigc__p_zts_netif_info_t, + _swigc__p_zts_network_status_t, + _swigc__p_zts_node_info_t, + _swigc__p_zts_path_t, + _swigc__p_zts_peer_info_t, + _swigc__p_zts_peer_role_t, + _swigc__p_zts_pollfd, + _swigc__p_zts_root_set_t, + _swigc__p_zts_route_info_t, + _swigc__p_zts_sockaddr, + _swigc__p_zts_sockaddr_storage, + _swigc__p_zts_stats_counter_t, + _swigc__p_zts_timeval, }; + /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ -static swig_const_info swig_const_table[] = { { 0, 0, 0, 0.0, 0, 0 } }; +static swig_const_info swig_const_table[] = { +{0, 0, 0, 0.0, 0, 0}}; #ifdef __cplusplus } @@ -22357,183 +16547,175 @@ extern "C" { #define SWIGRUNTIME_DEBUG #endif -SWIGRUNTIME void SWIG_InitializeModule(void* clientdata) -{ - size_t i; - swig_module_info *module_head, *iter; - int init; - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next == 0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } - else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (! module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - } - else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - iter = module_head; - do { - if (iter == &swig_module) { - /* Our module is already in the list, so there's nothing more to do. */ - return; - } - iter = iter->next; - } while (iter != module_head); - - /* otherwise we must add our module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpreters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) +SWIGRUNTIME void +SWIG_InitializeModule(void *clientdata) { + size_t i; + swig_module_info *module_head, *iter; + int init; + + /* check to see if the circular list has been setup, if not, set it up */ + if (swig_module.next==0) { + /* Initialize the swig_module */ + swig_module.type_initial = swig_type_initial; + swig_module.cast_initial = swig_cast_initial; + swig_module.next = &swig_module; + init = 1; + } else { + init = 0; + } + + /* Try and load any already created modules */ + module_head = SWIG_GetModule(clientdata); + if (!module_head) { + /* This is the first module loaded for this interpreter */ + /* so set the swig module into the interpreter */ + SWIG_SetModule(clientdata, &swig_module); + } else { + /* the interpreter has loaded a SWIG module, but has it loaded this one? */ + iter=module_head; + do { + if (iter==&swig_module) { + /* Our module is already in the list, so there's nothing more to do. */ return; - - /* Now work on filling in swig_module.types */ + } + iter=iter->next; + } while (iter!= module_head); + + /* otherwise we must add our module into the list */ + swig_module.next = module_head->next; + module_head->next = &swig_module; + } + + /* When multiple interpreters are used, a module could have already been initialized in + a different interpreter, but not yet have a pointer in this interpreter. + In this case, we do not want to continue adding types... everything should be + set up already */ + if (init == 0) return; + + /* Now work on filling in swig_module.types */ #ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %lu\n", (unsigned long)swig_module.size); + printf("SWIG_InitializeModule: size %lu\n", (unsigned long)swig_module.size); #endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info* type = 0; - swig_type_info* ret; - swig_cast_info* cast; - + for (i = 0; i < swig_module.size; ++i) { + swig_type_info *type = 0; + swig_type_info *ret; + swig_cast_info *cast; + #ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %lu %s\n", (unsigned long)i, swig_module.type_initial[i]->name); + printf("SWIG_InitializeModule: type %lu %s\n", (unsigned long)i, swig_module.type_initial[i]->name); #endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } - else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) - printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } - else { - /* Check for casting already in the list */ - swig_cast_info* ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) - printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (! ocast) - ret = 0; - } - } - - if (! ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; + + /* if there is another module already loaded */ + if (swig_module.next != &swig_module) { + type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); } - swig_module.types[i] = 0; - + if (type) { + /* Overwrite clientdata field */ #ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info* cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %lu %s\n", (unsigned long)i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n", j); + printf("SWIG_InitializeModule: found type %s\n", type->name); +#endif + if (swig_module.type_initial[i]->clientdata) { + type->clientdata = swig_module.type_initial[i]->clientdata; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); +#endif + } + } else { + type = swig_module.type_initial[i]; } - printf("**** SWIG_InitializeModule: Cast List ******\n"); + + /* Insert casting types */ + cast = swig_module.cast_initial[i]; + while (cast->type) { + /* Don't need to add information already in the list */ + ret = 0; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); +#endif + if (swig_module.next != &swig_module) { + ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); +#ifdef SWIGRUNTIME_DEBUG + if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); +#endif + } + if (ret) { + if (type == swig_module.type_initial[i]) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: skip old type %s\n", ret->name); +#endif + cast->type = ret; + ret = 0; + } else { + /* Check for casting already in the list */ + swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); +#ifdef SWIGRUNTIME_DEBUG + if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); +#endif + if (!ocast) ret = 0; + } + } + + if (!ret) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); +#endif + if (type->cast) { + type->cast->prev = cast; + cast->next = type->cast; + } + type->cast = cast; + } + cast++; + } + /* Set entry in modules->types array equal to the type */ + swig_module.types[i] = type; + } + swig_module.types[i] = 0; + +#ifdef SWIGRUNTIME_DEBUG + printf("**** SWIG_InitializeModule: Cast List ******\n"); + for (i = 0; i < swig_module.size; ++i) { + int j = 0; + swig_cast_info *cast = swig_module.cast_initial[i]; + printf("SWIG_InitializeModule: type %lu %s\n", (unsigned long)i, swig_module.type_initial[i]->name); + while (cast->type) { + printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); + cast++; + ++j; + } + printf("---- Total casts: %d\n",j); + } + printf("**** SWIG_InitializeModule: Cast List ******\n"); #endif } /* This function will propagate the clientdata field of type to - * any new swig_type_info structures that have been added into the list - * of equivalent types. It is like calling - * SWIG_TypeClientData(type, clientdata) a second time. - */ -SWIGRUNTIME void SWIG_PropagateClientData(void) -{ - size_t i; - swig_cast_info* equiv; - static int init_run = 0; - - if (init_run) - return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (! equiv->converter) { - if (equiv->type && ! equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } +* any new swig_type_info structures that have been added into the list +* of equivalent types. It is like calling +* SWIG_TypeClientData(type, clientdata) a second time. +*/ +SWIGRUNTIME void +SWIG_PropagateClientData(void) { + size_t i; + swig_cast_info *equiv; + static int init_run = 0; + + if (init_run) return; + init_run = 1; + + for (i = 0; i < swig_module.size; i++) { + if (swig_module.types[i]->clientdata) { + equiv = swig_module.types[i]->cast; + while (equiv) { + if (!equiv->converter) { + if (equiv->type && !equiv->type->clientdata) + SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); } + equiv = equiv->next; + } } + } } #ifdef __cplusplus @@ -22544,59 +16726,62 @@ SWIGRUNTIME void SWIG_PropagateClientData(void) } #endif + + #ifdef __cplusplus extern "C" { #endif - -/* Python-specific SWIG API */ -#define SWIG_newvarlink() SWIG_Python_newvarlink() -#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) -#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) - -/* ----------------------------------------------------------------------------- - * global variable support code. - * ----------------------------------------------------------------------------- */ - -typedef struct swig_globalvar { - char* name; /* Name of global variable */ - PyObject* (*get_attr)(void); /* Return the current value */ - int (*set_attr)(PyObject*); /* Set the value */ - struct swig_globalvar* next; -} swig_globalvar; - -typedef struct swig_varlinkobject { - PyObject_HEAD swig_globalvar* vars; -} swig_varlinkobject; - -SWIGINTERN PyObject* swig_varlink_repr(swig_varlinkobject* SWIGUNUSEDPARM(v)) -{ + + /* Python-specific SWIG API */ +#define SWIG_newvarlink() SWIG_Python_newvarlink() +#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) +#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) + + /* ----------------------------------------------------------------------------- + * global variable support code. + * ----------------------------------------------------------------------------- */ + + typedef struct swig_globalvar { + char *name; /* Name of global variable */ + PyObject *(*get_attr)(void); /* Return the current value */ + int (*set_attr)(PyObject *); /* Set the value */ + struct swig_globalvar *next; + } swig_globalvar; + + typedef struct swig_varlinkobject { + PyObject_HEAD + swig_globalvar *vars; + } swig_varlinkobject; + + SWIGINTERN PyObject * + swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { #if PY_VERSION_HEX >= 0x03000000 return PyUnicode_InternFromString(""); #else return PyString_FromString(""); #endif -} - -SWIGINTERN PyObject* swig_varlink_str(swig_varlinkobject* v) -{ + } + + SWIGINTERN PyObject * + swig_varlink_str(swig_varlinkobject *v) { #if PY_VERSION_HEX >= 0x03000000 - PyObject* str = PyUnicode_InternFromString("("); - PyObject* tail; - PyObject* joined; - swig_globalvar* var; - for (var = v->vars; var; var = var->next) { - tail = PyUnicode_FromString(var->name); + PyObject *str = PyUnicode_InternFromString("("); + PyObject *tail; + PyObject *joined; + swig_globalvar *var; + for (var = v->vars; var; var=var->next) { + tail = PyUnicode_FromString(var->name); + joined = PyUnicode_Concat(str, tail); + Py_DecRef(str); + Py_DecRef(tail); + str = joined; + if (var->next) { + tail = PyUnicode_InternFromString(", "); joined = PyUnicode_Concat(str, tail); Py_DecRef(str); Py_DecRef(tail); str = joined; - if (var->next) { - tail = PyUnicode_InternFromString(", "); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - } + } } tail = PyUnicode_InternFromString(")"); joined = PyUnicode_Concat(str, tail); @@ -22604,321 +16789,297 @@ SWIGINTERN PyObject* swig_varlink_str(swig_varlinkobject* v) Py_DecRef(tail); str = joined; #else - PyObject* str = PyString_FromString("("); - swig_globalvar* var; - for (var = v->vars; var; var = var->next) { - PyString_ConcatAndDel(&str, PyString_FromString(var->name)); - if (var->next) - PyString_ConcatAndDel(&str, PyString_FromString(", ")); + PyObject *str = PyString_FromString("("); + swig_globalvar *var; + for (var = v->vars; var; var=var->next) { + PyString_ConcatAndDel(&str,PyString_FromString(var->name)); + if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); } - PyString_ConcatAndDel(&str, PyString_FromString(")")); + PyString_ConcatAndDel(&str,PyString_FromString(")")); #endif return str; -} - -SWIGINTERN void swig_varlink_dealloc(swig_varlinkobject* v) -{ - swig_globalvar* var = v->vars; + } + + SWIGINTERN void + swig_varlink_dealloc(swig_varlinkobject *v) { + swig_globalvar *var = v->vars; while (var) { - swig_globalvar* n = var->next; - free(var->name); - free(var); - var = n; + swig_globalvar *n = var->next; + free(var->name); + free(var); + var = n; } -} - -SWIGINTERN PyObject* swig_varlink_getattr(swig_varlinkobject* v, char* n) -{ - PyObject* res = NULL; - swig_globalvar* var = v->vars; + } + + SWIGINTERN PyObject * + swig_varlink_getattr(swig_varlinkobject *v, char *n) { + PyObject *res = NULL; + swig_globalvar *var = v->vars; while (var) { - if (strcmp(var->name, n) == 0) { - res = (*var->get_attr)(); - break; - } - var = var->next; + if (strcmp(var->name,n) == 0) { + res = (*var->get_attr)(); + break; + } + var = var->next; } - if (res == NULL && ! PyErr_Occurred()) { - PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); + if (res == NULL && !PyErr_Occurred()) { + PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); } return res; -} - -SWIGINTERN int swig_varlink_setattr(swig_varlinkobject* v, char* n, PyObject* p) -{ + } + + SWIGINTERN int + swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { int res = 1; - swig_globalvar* var = v->vars; + swig_globalvar *var = v->vars; while (var) { - if (strcmp(var->name, n) == 0) { - res = (*var->set_attr)(p); - break; - } - var = var->next; + if (strcmp(var->name,n) == 0) { + res = (*var->set_attr)(p); + break; + } + var = var->next; } - if (res == 1 && ! PyErr_Occurred()) { - PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); + if (res == 1 && !PyErr_Occurred()) { + PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n); } return res; -} - -SWIGINTERN PyTypeObject* swig_varlink_type(void) -{ + } + + SWIGINTERN PyTypeObject* + swig_varlink_type(void) { static char varlink__doc__[] = "Swig var link object"; static PyTypeObject varlink_type; static int type_init = 0; - if (! type_init) { - const PyTypeObject tmp = { + if (!type_init) { + const PyTypeObject tmp = { #if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(NULL, 0) + PyVarObject_HEAD_INIT(NULL, 0) #else - PyObject_HEAD_INIT(NULL) 0, /* ob_size */ + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ #endif - "swigvarlink", /* tp_name */ - sizeof(swig_varlinkobject), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)swig_varlink_dealloc, /* tp_dealloc */ - 0, /* tp_print */ - (getattrfunc)swig_varlink_getattr, /* tp_getattr */ - (setattrfunc)swig_varlink_setattr, /* tp_setattr */ - 0, /* tp_compare */ - (reprfunc)swig_varlink_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - 0, /* tp_hash */ - 0, /* tp_call */ - (reprfunc)swig_varlink_str, /* tp_str */ - 0, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - 0, /* tp_flags */ - varlink__doc__, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, /* tp_iter -> tp_weaklist */ - 0, /* tp_del */ - 0, /* tp_version_tag */ + "swigvarlink", /* tp_name */ + sizeof(swig_varlinkobject), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor) swig_varlink_dealloc, /* tp_dealloc */ + 0, /* tp_print */ + (getattrfunc) swig_varlink_getattr, /* tp_getattr */ + (setattrfunc) swig_varlink_setattr, /* tp_setattr */ + 0, /* tp_compare */ + (reprfunc) swig_varlink_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + 0, /* tp_hash */ + 0, /* tp_call */ + (reprfunc) swig_varlink_str, /* tp_str */ + 0, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + 0, /* tp_flags */ + varlink__doc__, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ + 0, /* tp_del */ + 0, /* tp_version_tag */ #if PY_VERSION_HEX >= 0x03040000 - 0, /* tp_finalize */ + 0, /* tp_finalize */ #endif #if PY_VERSION_HEX >= 0x03080000 - 0, /* tp_vectorcall */ + 0, /* tp_vectorcall */ #endif #if (PY_VERSION_HEX >= 0x03080000) && (PY_VERSION_HEX < 0x03090000) - 0, /* tp_print */ + 0, /* tp_print */ #endif #ifdef COUNT_ALLOCS - 0, /* tp_allocs */ - 0, /* tp_frees */ - 0, /* tp_maxalloc */ - 0, /* tp_prev */ - 0 /* tp_next */ + 0, /* tp_allocs */ + 0, /* tp_frees */ + 0, /* tp_maxalloc */ + 0, /* tp_prev */ + 0 /* tp_next */ #endif - }; - varlink_type = tmp; - type_init = 1; - if (PyType_Ready(&varlink_type) < 0) - return NULL; + }; + varlink_type = tmp; + type_init = 1; + if (PyType_Ready(&varlink_type) < 0) + return NULL; } return &varlink_type; -} - -/* Create a variable linking object for use later */ -SWIGINTERN PyObject* SWIG_Python_newvarlink(void) -{ - swig_varlinkobject* result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); + } + + /* Create a variable linking object for use later */ + SWIGINTERN PyObject * + SWIG_Python_newvarlink(void) { + swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); if (result) { - result->vars = 0; + result->vars = 0; } - return ((PyObject*)result); -} - -SWIGINTERN void -SWIG_Python_addvarlink(PyObject* p, const char* name, PyObject* (*get_attr)(void), int (*set_attr)(PyObject* p)) -{ - swig_varlinkobject* v = (swig_varlinkobject*)p; - swig_globalvar* gv = (swig_globalvar*)malloc(sizeof(swig_globalvar)); + return ((PyObject*) result); + } + + SWIGINTERN void + SWIG_Python_addvarlink(PyObject *p, const char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { + swig_varlinkobject *v = (swig_varlinkobject *) p; + swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); if (gv) { - size_t size = strlen(name) + 1; - gv->name = (char*)malloc(size); - if (gv->name) { - memcpy(gv->name, name, size); - gv->get_attr = get_attr; - gv->set_attr = set_attr; - gv->next = v->vars; - } + size_t size = strlen(name)+1; + gv->name = (char *)malloc(size); + if (gv->name) { + memcpy(gv->name, name, size); + gv->get_attr = get_attr; + gv->set_attr = set_attr; + gv->next = v->vars; + } } v->vars = gv; -} - -SWIGINTERN PyObject* SWIG_globals(void) -{ - static PyObject* globals = 0; - if (! globals) { - globals = SWIG_newvarlink(); + } + + SWIGINTERN PyObject * + SWIG_globals(void) { + static PyObject *globals = 0; + if (!globals) { + globals = SWIG_newvarlink(); } return globals; -} - -/* ----------------------------------------------------------------------------- - * constants/methods manipulation - * ----------------------------------------------------------------------------- */ - -/* Install Constants */ -SWIGINTERN void SWIG_Python_InstallConstants(PyObject* d, swig_const_info constants[]) -{ - PyObject* obj = 0; + } + + /* ----------------------------------------------------------------------------- + * constants/methods manipulation + * ----------------------------------------------------------------------------- */ + + /* Install Constants */ + SWIGINTERN void + SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { + PyObject *obj = 0; size_t i; for (i = 0; constants[i].type; ++i) { - switch (constants[i].type) { - case SWIG_PY_POINTER: - obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype, 0); - break; - case SWIG_PY_BINARY: - obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); - break; - default: - obj = 0; - break; - } - if (obj) { - PyDict_SetItemString(d, constants[i].name, obj); - Py_DECREF(obj); - } + switch(constants[i].type) { + case SWIG_PY_POINTER: + obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); + break; + case SWIG_PY_BINARY: + obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); + break; + default: + obj = 0; + break; + } + if (obj) { + PyDict_SetItemString(d, constants[i].name, obj); + Py_DECREF(obj); + } } -} - -/* -----------------------------------------------------------------------------*/ -/* Fix SwigMethods to carry the callback ptrs when needed */ -/* -----------------------------------------------------------------------------*/ - -SWIGINTERN void SWIG_Python_FixMethods( - PyMethodDef* methods, - swig_const_info* const_table, - swig_type_info** types, - swig_type_info** types_initial) -{ + } + + /* -----------------------------------------------------------------------------*/ + /* Fix SwigMethods to carry the callback ptrs when needed */ + /* -----------------------------------------------------------------------------*/ + + SWIGINTERN void + SWIG_Python_FixMethods(PyMethodDef *methods, + swig_const_info *const_table, + swig_type_info **types, + swig_type_info **types_initial) { size_t i; for (i = 0; methods[i].ml_name; ++i) { - const char* c = methods[i].ml_doc; - if (! c) - continue; - c = strstr(c, "swig_ptr: "); - if (c) { - int j; - swig_const_info* ci = 0; - const char* name = c + 10; - for (j = 0; const_table[j].type; ++j) { - if (strncmp(const_table[j].name, name, strlen(const_table[j].name)) == 0) { - ci = &(const_table[j]); - break; - } - } - if (ci) { - void* ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; - if (ptr) { - size_t shift = (ci->ptype) - types; - swig_type_info* ty = types_initial[shift]; - size_t ldoc = (c - methods[i].ml_doc); - size_t lptr = strlen(ty->name) + 2 * sizeof(void*) + 2; - char* ndoc = (char*)malloc(ldoc + lptr + 10); - if (ndoc) { - char* buff = ndoc; - memcpy(buff, methods[i].ml_doc, ldoc); - buff += ldoc; - memcpy(buff, "swig_ptr: ", 10); - buff += 10; - SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); - methods[i].ml_doc = ndoc; - } - } - } + const char *c = methods[i].ml_doc; + if (!c) continue; + c = strstr(c, "swig_ptr: "); + if (c) { + int j; + swig_const_info *ci = 0; + const char *name = c + 10; + for (j = 0; const_table[j].type; ++j) { + if (strncmp(const_table[j].name, name, + strlen(const_table[j].name)) == 0) { + ci = &(const_table[j]); + break; + } } + if (ci) { + void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; + if (ptr) { + size_t shift = (ci->ptype) - types; + swig_type_info *ty = types_initial[shift]; + size_t ldoc = (c - methods[i].ml_doc); + size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; + char *ndoc = (char*)malloc(ldoc + lptr + 10); + if (ndoc) { + char *buff = ndoc; + memcpy(buff, methods[i].ml_doc, ldoc); + buff += ldoc; + memcpy(buff, "swig_ptr: ", 10); + buff += 10; + SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); + methods[i].ml_doc = ndoc; + } + } + } + } } -} - -/* ----------------------------------------------------------------------------- - * Method creation and docstring support functions - * ----------------------------------------------------------------------------- */ - -/* ----------------------------------------------------------------------------- - * Function to find the method definition with the correct docstring for the - * proxy module as opposed to the low-level API - * ----------------------------------------------------------------------------- */ - -SWIGINTERN PyMethodDef* SWIG_PythonGetProxyDoc(const char* name) -{ + } + + /* ----------------------------------------------------------------------------- + * Method creation and docstring support functions + * ----------------------------------------------------------------------------- */ + + /* ----------------------------------------------------------------------------- + * Function to find the method definition with the correct docstring for the + * proxy module as opposed to the low-level API + * ----------------------------------------------------------------------------- */ + + SWIGINTERN PyMethodDef *SWIG_PythonGetProxyDoc(const char *name) { /* Find the function in the modified method table */ size_t offset = 0; int found = 0; while (SwigMethods_proxydocs[offset].ml_meth != NULL) { - if (strcmp(SwigMethods_proxydocs[offset].ml_name, name) == 0) { - found = 1; - break; - } - offset++; + if (strcmp(SwigMethods_proxydocs[offset].ml_name, name) == 0) { + found = 1; + break; + } + offset++; } /* Use the copy with the modified docstring if available */ return found ? &SwigMethods_proxydocs[offset] : NULL; -} - -/* ----------------------------------------------------------------------------- - * Wrapper of PyInstanceMethod_New() used in Python 3 - * It is exported to the generated module, used for -fastproxy - * ----------------------------------------------------------------------------- */ - -SWIGINTERN PyObject* SWIG_PyInstanceMethod_New(PyObject* SWIGUNUSEDPARM(self), PyObject* func) -{ + } + + /* ----------------------------------------------------------------------------- + * Wrapper of PyInstanceMethod_New() used in Python 3 + * It is exported to the generated module, used for -fastproxy + * ----------------------------------------------------------------------------- */ + + SWIGINTERN PyObject *SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func) { if (PyCFunction_Check(func)) { - PyCFunctionObject* funcobj = (PyCFunctionObject*)func; - PyMethodDef* ml = SWIG_PythonGetProxyDoc(funcobj->m_ml->ml_name); - if (ml) - func = PyCFunction_NewEx(ml, funcobj->m_self, funcobj->m_module); + PyCFunctionObject *funcobj = (PyCFunctionObject *)func; + PyMethodDef *ml = SWIG_PythonGetProxyDoc(funcobj->m_ml->ml_name); + if (ml) + func = PyCFunction_NewEx(ml, funcobj->m_self, funcobj->m_module); } #if PY_VERSION_HEX >= 0x03000000 return PyInstanceMethod_New(func); #else return PyMethod_New(func, NULL, NULL); #endif -} - -/* ----------------------------------------------------------------------------- - * Wrapper of PyStaticMethod_New() - * It is exported to the generated module, used for -fastproxy - * ----------------------------------------------------------------------------- */ - -SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyObject* func) -{ + } + + /* ----------------------------------------------------------------------------- + * Wrapper of PyStaticMethod_New() + * It is exported to the generated module, used for -fastproxy + * ----------------------------------------------------------------------------- */ + + SWIGINTERN PyObject *SWIG_PyStaticMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func) { if (PyCFunction_Check(func)) { - PyCFunctionObject* funcobj = (PyCFunctionObject*)func; - PyMethodDef* ml = SWIG_PythonGetProxyDoc(funcobj->m_ml->ml_name); - if (ml) - func = PyCFunction_NewEx(ml, funcobj->m_self, funcobj->m_module); + PyCFunctionObject *funcobj = (PyCFunctionObject *)func; + PyMethodDef *ml = SWIG_PythonGetProxyDoc(funcobj->m_ml->ml_name); + if (ml) + func = PyCFunction_NewEx(ml, funcobj->m_self, funcobj->m_module); } return PyStaticMethod_New(func); -} - + } + #ifdef __cplusplus } #endif @@ -22931,421 +17092,373 @@ SWIGINTERN PyObject* SWIG_PyStaticMethod_New(PyObject* SWIGUNUSEDPARM(self), PyO extern "C" #endif - SWIGEXPORT +SWIGEXPORT #if PY_VERSION_HEX >= 0x03000000 - PyObject* +PyObject* #else void #endif - SWIG_init(void) -{ - PyObject *m, *d, *md, *globals; - +SWIG_init(void) { + PyObject *m, *d, *md, *globals; + #if PY_VERSION_HEX >= 0x03000000 - static struct PyModuleDef SWIG_module = { - PyModuleDef_HEAD_INIT, SWIG_name, NULL, -1, SwigMethods, NULL, NULL, NULL, NULL - }; + static struct PyModuleDef SWIG_module = { + PyModuleDef_HEAD_INIT, + SWIG_name, + NULL, + -1, + SwigMethods, + NULL, + NULL, + NULL, + NULL + }; #endif - + #if defined(SWIGPYTHON_BUILTIN) - static SwigPyClientData SwigPyObject_clientdata = { 0, 0, 0, 0, 0, 0, 0 }; - static PyGetSetDef this_getset_def = { (char*)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL }; - static SwigPyGetSet thisown_getset_closure = { SwigPyObject_own, SwigPyObject_own }; - static PyGetSetDef thisown_getset_def = { (char*)"thisown", - SwigPyBuiltin_GetterClosure, - SwigPyBuiltin_SetterClosure, - NULL, - &thisown_getset_closure }; - PyTypeObject* builtin_pytype; - int builtin_base_count; - swig_type_info* builtin_basetype; - PyObject* tuple; - PyGetSetDescrObject* static_getset; - PyTypeObject* metatype; - PyTypeObject* swigpyobject; - SwigPyClientData* cd; - PyObject *public_interface, *public_symbol; - PyObject* this_descr; - PyObject* thisown_descr; - PyObject* self = 0; - int i; - - (void)builtin_pytype; - (void)builtin_base_count; - (void)builtin_basetype; - (void)tuple; - (void)static_getset; - (void)self; - - /* Metaclass is used to implement static member variables */ - metatype = SwigPyObjectType(); - assert(metatype); + static SwigPyClientData SwigPyObject_clientdata = { + 0, 0, 0, 0, 0, 0, 0 + }; + static PyGetSetDef this_getset_def = { + (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL + }; + static SwigPyGetSet thisown_getset_closure = { + SwigPyObject_own, + SwigPyObject_own + }; + static PyGetSetDef thisown_getset_def = { + (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure + }; + PyTypeObject *builtin_pytype; + int builtin_base_count; + swig_type_info *builtin_basetype; + PyObject *tuple; + PyGetSetDescrObject *static_getset; + PyTypeObject *metatype; + PyTypeObject *swigpyobject; + SwigPyClientData *cd; + PyObject *public_interface, *public_symbol; + PyObject *this_descr; + PyObject *thisown_descr; + PyObject *self = 0; + int i; + + (void)builtin_pytype; + (void)builtin_base_count; + (void)builtin_basetype; + (void)tuple; + (void)static_getset; + (void)self; + + /* Metaclass is used to implement static member variables */ + metatype = SwigPyObjectType(); + assert(metatype); #endif - - (void)globals; - - /* Create singletons now to avoid potential deadlocks with multi-threaded usage after module initialization */ - SWIG_This(); - SWIG_Python_TypeCache(); - SwigPyPacked_type(); + + (void)globals; + + /* Create singletons now to avoid potential deadlocks with multi-threaded usage after module initialization */ + SWIG_This(); + SWIG_Python_TypeCache(); + SwigPyPacked_type(); #ifndef SWIGPYTHON_BUILTIN - SwigPyObject_type(); + SwigPyObject_type(); #endif - - /* Fix SwigMethods to carry the callback ptrs when needed */ - SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); - + + /* Fix SwigMethods to carry the callback ptrs when needed */ + SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); + #if PY_VERSION_HEX >= 0x03000000 - m = PyModule_Create(&SWIG_module); + m = PyModule_Create(&SWIG_module); #else - m = Py_InitModule(SWIG_name, SwigMethods); + m = Py_InitModule(SWIG_name, SwigMethods); #endif - - md = d = PyModule_GetDict(m); - (void)md; - - SWIG_InitializeModule(0); - + + md = d = PyModule_GetDict(m); + (void)md; + + SWIG_InitializeModule(0); + #ifdef SWIGPYTHON_BUILTIN - swigpyobject = SwigPyObject_TypeOnce(); - - SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject"); - assert(SwigPyObject_stype); - cd = (SwigPyClientData*)SwigPyObject_stype->clientdata; - if (! cd) { - SwigPyObject_stype->clientdata = &SwigPyObject_clientdata; - SwigPyObject_clientdata.pytype = swigpyobject; - } - else if (swigpyobject->tp_basicsize != cd->pytype->tp_basicsize) { - PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules."); -#if PY_VERSION_HEX >= 0x03000000 - return NULL; -#else - return; + swigpyobject = SwigPyObject_TypeOnce(); + + SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject"); + assert(SwigPyObject_stype); + cd = (SwigPyClientData*) SwigPyObject_stype->clientdata; + if (!cd) { + SwigPyObject_stype->clientdata = &SwigPyObject_clientdata; + SwigPyObject_clientdata.pytype = swigpyobject; + } else if (swigpyobject->tp_basicsize != cd->pytype->tp_basicsize) { + PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules."); +# if PY_VERSION_HEX >= 0x03000000 + return NULL; +# else + return; +# endif + } + + /* All objects have a 'this' attribute */ + this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def); + (void)this_descr; + + /* All objects have a 'thisown' attribute */ + thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def); + (void)thisown_descr; + + public_interface = PyList_New(0); + public_symbol = 0; + (void)public_symbol; + + PyDict_SetItemString(md, "__all__", public_interface); + Py_DECREF(public_interface); + for (i = 0; SwigMethods[i].ml_name != NULL; ++i) + SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name); + for (i = 0; swig_const_table[i].name != 0; ++i) + SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name); #endif - } - - /* All objects have a 'this' attribute */ - this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def); - (void)this_descr; - - /* All objects have a 'thisown' attribute */ - thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def); - (void)thisown_descr; - - public_interface = PyList_New(0); - public_symbol = 0; - (void)public_symbol; - - PyDict_SetItemString(md, "__all__", public_interface); - Py_DECREF(public_interface); - for (i = 0; SwigMethods[i].ml_name != NULL; ++i) - SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name); - for (i = 0; swig_const_table[i].name != 0; ++i) - SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name); -#endif - - SWIG_InstallConstants(d, swig_const_table); - - SWIG_Python_SetConstant(d, "ZTS_ENABLE_PYTHON", SWIG_From_int(static_cast(1))); - SWIG_Python_SetConstant(d, "ZTS_ERR_OK", SWIG_From_int(static_cast(ZTS_ERR_OK))); - SWIG_Python_SetConstant(d, "ZTS_ERR_SOCKET", SWIG_From_int(static_cast(ZTS_ERR_SOCKET))); - SWIG_Python_SetConstant(d, "ZTS_ERR_SERVICE", SWIG_From_int(static_cast(ZTS_ERR_SERVICE))); - SWIG_Python_SetConstant(d, "ZTS_ERR_ARG", SWIG_From_int(static_cast(ZTS_ERR_ARG))); - SWIG_Python_SetConstant(d, "ZTS_ERR_NO_RESULT", SWIG_From_int(static_cast(ZTS_ERR_NO_RESULT))); - SWIG_Python_SetConstant(d, "ZTS_ERR_GENERAL", SWIG_From_int(static_cast(ZTS_ERR_GENERAL))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_UP", SWIG_From_int(static_cast(ZTS_EVENT_NODE_UP))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_ONLINE", SWIG_From_int(static_cast(ZTS_EVENT_NODE_ONLINE))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_OFFLINE", SWIG_From_int(static_cast(ZTS_EVENT_NODE_OFFLINE))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_DOWN", SWIG_From_int(static_cast(ZTS_EVENT_NODE_DOWN))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NODE_FATAL_ERROR", - SWIG_From_int(static_cast(ZTS_EVENT_NODE_FATAL_ERROR))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_NOT_FOUND", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_NOT_FOUND))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_CLIENT_TOO_OLD", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_CLIENT_TOO_OLD))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_REQ_CONFIG", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_REQ_CONFIG))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_OK", SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_OK))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_ACCESS_DENIED", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_ACCESS_DENIED))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_READY_IP4", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_READY_IP4))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_READY_IP6", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_READY_IP6))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_NETWORK_READY_IP4_IP6", - SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_READY_IP4_IP6))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_DOWN", SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_DOWN))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_UPDATE", SWIG_From_int(static_cast(ZTS_EVENT_NETWORK_UPDATE))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_STACK_UP", SWIG_From_int(static_cast(ZTS_EVENT_STACK_UP))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_STACK_DOWN", SWIG_From_int(static_cast(ZTS_EVENT_STACK_DOWN))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_UP", SWIG_From_int(static_cast(ZTS_EVENT_NETIF_UP))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_DOWN", SWIG_From_int(static_cast(ZTS_EVENT_NETIF_DOWN))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_REMOVED", SWIG_From_int(static_cast(ZTS_EVENT_NETIF_REMOVED))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_LINK_UP", SWIG_From_int(static_cast(ZTS_EVENT_NETIF_LINK_UP))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_LINK_DOWN", SWIG_From_int(static_cast(ZTS_EVENT_NETIF_LINK_DOWN))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_DIRECT", SWIG_From_int(static_cast(ZTS_EVENT_PEER_DIRECT))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_RELAY", SWIG_From_int(static_cast(ZTS_EVENT_PEER_RELAY))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_PEER_UNREACHABLE", - SWIG_From_int(static_cast(ZTS_EVENT_PEER_UNREACHABLE))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_PEER_PATH_DISCOVERED", - SWIG_From_int(static_cast(ZTS_EVENT_PEER_PATH_DISCOVERED))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_PATH_DEAD", SWIG_From_int(static_cast(ZTS_EVENT_PEER_PATH_DEAD))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_ROUTE_ADDED", SWIG_From_int(static_cast(ZTS_EVENT_ROUTE_ADDED))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_ROUTE_REMOVED", SWIG_From_int(static_cast(ZTS_EVENT_ROUTE_REMOVED))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_ADDED_IP4", SWIG_From_int(static_cast(ZTS_EVENT_ADDR_ADDED_IP4))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_ADDR_REMOVED_IP4", - SWIG_From_int(static_cast(ZTS_EVENT_ADDR_REMOVED_IP4))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_ADDED_IP6", SWIG_From_int(static_cast(ZTS_EVENT_ADDR_ADDED_IP6))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_ADDR_REMOVED_IP6", - SWIG_From_int(static_cast(ZTS_EVENT_ADDR_REMOVED_IP6))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_STORE_IDENTITY_SECRET", - SWIG_From_int(static_cast(ZTS_EVENT_STORE_IDENTITY_SECRET))); - SWIG_Python_SetConstant( - d, - "ZTS_EVENT_STORE_IDENTITY_PUBLIC", - SWIG_From_int(static_cast(ZTS_EVENT_STORE_IDENTITY_PUBLIC))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_PLANET", SWIG_From_int(static_cast(ZTS_EVENT_STORE_PLANET))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_PEER", SWIG_From_int(static_cast(ZTS_EVENT_STORE_PEER))); - SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_NETWORK", SWIG_From_int(static_cast(ZTS_EVENT_STORE_NETWORK))); - globals = SWIG_globals(); - if (! globals) { - PyErr_SetString(PyExc_TypeError, "Failure to create SWIG globals."); + + SWIG_InstallConstants(d,swig_const_table); + + SWIG_Python_SetConstant(d, "ZTS_ENABLE_PYTHON",SWIG_From_int(static_cast< int >(1))); + SWIG_Python_SetConstant(d, "ZTS_ERR_OK",SWIG_From_int(static_cast< int >(ZTS_ERR_OK))); + SWIG_Python_SetConstant(d, "ZTS_ERR_SOCKET",SWIG_From_int(static_cast< int >(ZTS_ERR_SOCKET))); + SWIG_Python_SetConstant(d, "ZTS_ERR_SERVICE",SWIG_From_int(static_cast< int >(ZTS_ERR_SERVICE))); + SWIG_Python_SetConstant(d, "ZTS_ERR_ARG",SWIG_From_int(static_cast< int >(ZTS_ERR_ARG))); + SWIG_Python_SetConstant(d, "ZTS_ERR_NO_RESULT",SWIG_From_int(static_cast< int >(ZTS_ERR_NO_RESULT))); + SWIG_Python_SetConstant(d, "ZTS_ERR_GENERAL",SWIG_From_int(static_cast< int >(ZTS_ERR_GENERAL))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_UP",SWIG_From_int(static_cast< int >(ZTS_EVENT_NODE_UP))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_ONLINE",SWIG_From_int(static_cast< int >(ZTS_EVENT_NODE_ONLINE))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_OFFLINE",SWIG_From_int(static_cast< int >(ZTS_EVENT_NODE_OFFLINE))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_DOWN",SWIG_From_int(static_cast< int >(ZTS_EVENT_NODE_DOWN))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NODE_FATAL_ERROR",SWIG_From_int(static_cast< int >(ZTS_EVENT_NODE_FATAL_ERROR))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_NOT_FOUND",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_NOT_FOUND))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_CLIENT_TOO_OLD",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_CLIENT_TOO_OLD))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_REQ_CONFIG",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_REQ_CONFIG))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_OK",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_OK))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_ACCESS_DENIED",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_ACCESS_DENIED))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_READY_IP4",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_READY_IP4))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_READY_IP6",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_READY_IP6))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_READY_IP4_IP6",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_READY_IP4_IP6))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_DOWN",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_DOWN))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETWORK_UPDATE",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETWORK_UPDATE))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STACK_UP",SWIG_From_int(static_cast< int >(ZTS_EVENT_STACK_UP))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STACK_DOWN",SWIG_From_int(static_cast< int >(ZTS_EVENT_STACK_DOWN))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_UP",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETIF_UP))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_DOWN",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETIF_DOWN))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_REMOVED",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETIF_REMOVED))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_LINK_UP",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETIF_LINK_UP))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_NETIF_LINK_DOWN",SWIG_From_int(static_cast< int >(ZTS_EVENT_NETIF_LINK_DOWN))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_DIRECT",SWIG_From_int(static_cast< int >(ZTS_EVENT_PEER_DIRECT))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_RELAY",SWIG_From_int(static_cast< int >(ZTS_EVENT_PEER_RELAY))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_UNREACHABLE",SWIG_From_int(static_cast< int >(ZTS_EVENT_PEER_UNREACHABLE))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_PATH_DISCOVERED",SWIG_From_int(static_cast< int >(ZTS_EVENT_PEER_PATH_DISCOVERED))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_PEER_PATH_DEAD",SWIG_From_int(static_cast< int >(ZTS_EVENT_PEER_PATH_DEAD))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ROUTE_ADDED",SWIG_From_int(static_cast< int >(ZTS_EVENT_ROUTE_ADDED))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ROUTE_REMOVED",SWIG_From_int(static_cast< int >(ZTS_EVENT_ROUTE_REMOVED))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_ADDED_IP4",SWIG_From_int(static_cast< int >(ZTS_EVENT_ADDR_ADDED_IP4))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_REMOVED_IP4",SWIG_From_int(static_cast< int >(ZTS_EVENT_ADDR_REMOVED_IP4))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_ADDED_IP6",SWIG_From_int(static_cast< int >(ZTS_EVENT_ADDR_ADDED_IP6))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_ADDR_REMOVED_IP6",SWIG_From_int(static_cast< int >(ZTS_EVENT_ADDR_REMOVED_IP6))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_IDENTITY_SECRET",SWIG_From_int(static_cast< int >(ZTS_EVENT_STORE_IDENTITY_SECRET))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_IDENTITY_PUBLIC",SWIG_From_int(static_cast< int >(ZTS_EVENT_STORE_IDENTITY_PUBLIC))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_PLANET",SWIG_From_int(static_cast< int >(ZTS_EVENT_STORE_PLANET))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_PEER",SWIG_From_int(static_cast< int >(ZTS_EVENT_STORE_PEER))); + SWIG_Python_SetConstant(d, "ZTS_EVENT_STORE_NETWORK",SWIG_From_int(static_cast< int >(ZTS_EVENT_STORE_NETWORK))); + globals = SWIG_globals(); + if (!globals) { + PyErr_SetString(PyExc_TypeError, "Failure to create SWIG globals."); #if PY_VERSION_HEX >= 0x03000000 - return NULL; -#else - return; -#endif - } - PyDict_SetItemString(md, "cvar", globals); - Py_DECREF(globals); - SWIG_addvarlink(globals, "zts_errno", Swig_var_zts_errno_get, Swig_var_zts_errno_set); - SWIG_Python_SetConstant(d, "ZTS_EPERM", SWIG_From_int(static_cast(ZTS_EPERM))); - SWIG_Python_SetConstant(d, "ZTS_ENOENT", SWIG_From_int(static_cast(ZTS_ENOENT))); - SWIG_Python_SetConstant(d, "ZTS_ESRCH", SWIG_From_int(static_cast(ZTS_ESRCH))); - SWIG_Python_SetConstant(d, "ZTS_EINTR", SWIG_From_int(static_cast(ZTS_EINTR))); - SWIG_Python_SetConstant(d, "ZTS_EIO", SWIG_From_int(static_cast(ZTS_EIO))); - SWIG_Python_SetConstant(d, "ZTS_ENXIO", SWIG_From_int(static_cast(ZTS_ENXIO))); - SWIG_Python_SetConstant(d, "ZTS_EBADF", SWIG_From_int(static_cast(ZTS_EBADF))); - SWIG_Python_SetConstant(d, "ZTS_EAGAIN", SWIG_From_int(static_cast(ZTS_EAGAIN))); - SWIG_Python_SetConstant(d, "ZTS_EWOULDBLOCK", SWIG_From_int(static_cast(ZTS_EWOULDBLOCK))); - SWIG_Python_SetConstant(d, "ZTS_ENOMEM", SWIG_From_int(static_cast(ZTS_ENOMEM))); - SWIG_Python_SetConstant(d, "ZTS_EACCES", SWIG_From_int(static_cast(ZTS_EACCES))); - SWIG_Python_SetConstant(d, "ZTS_EFAULT", SWIG_From_int(static_cast(ZTS_EFAULT))); - SWIG_Python_SetConstant(d, "ZTS_EBUSY", SWIG_From_int(static_cast(ZTS_EBUSY))); - SWIG_Python_SetConstant(d, "ZTS_EEXIST", SWIG_From_int(static_cast(ZTS_EEXIST))); - SWIG_Python_SetConstant(d, "ZTS_ENODEV", SWIG_From_int(static_cast(ZTS_ENODEV))); - SWIG_Python_SetConstant(d, "ZTS_EINVAL", SWIG_From_int(static_cast(ZTS_EINVAL))); - SWIG_Python_SetConstant(d, "ZTS_ENFILE", SWIG_From_int(static_cast(ZTS_ENFILE))); - SWIG_Python_SetConstant(d, "ZTS_EMFILE", SWIG_From_int(static_cast(ZTS_EMFILE))); - SWIG_Python_SetConstant(d, "ZTS_ENOSYS", SWIG_From_int(static_cast(ZTS_ENOSYS))); - SWIG_Python_SetConstant(d, "ZTS_ENOTSOCK", SWIG_From_int(static_cast(ZTS_ENOTSOCK))); - SWIG_Python_SetConstant(d, "ZTS_EDESTADDRREQ", SWIG_From_int(static_cast(ZTS_EDESTADDRREQ))); - SWIG_Python_SetConstant(d, "ZTS_EMSGSIZE", SWIG_From_int(static_cast(ZTS_EMSGSIZE))); - SWIG_Python_SetConstant(d, "ZTS_EPROTOTYPE", SWIG_From_int(static_cast(ZTS_EPROTOTYPE))); - SWIG_Python_SetConstant(d, "ZTS_ENOPROTOOPT", SWIG_From_int(static_cast(ZTS_ENOPROTOOPT))); - SWIG_Python_SetConstant(d, "ZTS_EPROTONOSUPPORT", SWIG_From_int(static_cast(ZTS_EPROTONOSUPPORT))); - SWIG_Python_SetConstant(d, "ZTS_ESOCKTNOSUPPORT", SWIG_From_int(static_cast(ZTS_ESOCKTNOSUPPORT))); - SWIG_Python_SetConstant(d, "ZTS_EOPNOTSUPP", SWIG_From_int(static_cast(ZTS_EOPNOTSUPP))); - SWIG_Python_SetConstant(d, "ZTS_EPFNOSUPPORT", SWIG_From_int(static_cast(ZTS_EPFNOSUPPORT))); - SWIG_Python_SetConstant(d, "ZTS_EAFNOSUPPORT", SWIG_From_int(static_cast(ZTS_EAFNOSUPPORT))); - SWIG_Python_SetConstant(d, "ZTS_EADDRINUSE", SWIG_From_int(static_cast(ZTS_EADDRINUSE))); - SWIG_Python_SetConstant(d, "ZTS_EADDRNOTAVAIL", SWIG_From_int(static_cast(ZTS_EADDRNOTAVAIL))); - SWIG_Python_SetConstant(d, "ZTS_ENETDOWN", SWIG_From_int(static_cast(ZTS_ENETDOWN))); - SWIG_Python_SetConstant(d, "ZTS_ENETUNREACH", SWIG_From_int(static_cast(ZTS_ENETUNREACH))); - SWIG_Python_SetConstant(d, "ZTS_ECONNABORTED", SWIG_From_int(static_cast(ZTS_ECONNABORTED))); - SWIG_Python_SetConstant(d, "ZTS_ECONNRESET", SWIG_From_int(static_cast(ZTS_ECONNRESET))); - SWIG_Python_SetConstant(d, "ZTS_ENOBUFS", SWIG_From_int(static_cast(ZTS_ENOBUFS))); - SWIG_Python_SetConstant(d, "ZTS_EISCONN", SWIG_From_int(static_cast(ZTS_EISCONN))); - SWIG_Python_SetConstant(d, "ZTS_ENOTCONN", SWIG_From_int(static_cast(ZTS_ENOTCONN))); - SWIG_Python_SetConstant(d, "ZTS_ETIMEDOUT", SWIG_From_int(static_cast(ZTS_ETIMEDOUT))); - SWIG_Python_SetConstant(d, "ZTS_EHOSTUNREACH", SWIG_From_int(static_cast(ZTS_EHOSTUNREACH))); - SWIG_Python_SetConstant(d, "ZTS_EALREADY", SWIG_From_int(static_cast(ZTS_EALREADY))); - SWIG_Python_SetConstant(d, "ZTS_EINPROGRESS", SWIG_From_int(static_cast(ZTS_EINPROGRESS))); - SWIG_Python_SetConstant(d, "ZTS_MAC_ADDRSTRLEN", SWIG_From_int(static_cast(18))); - SWIG_Python_SetConstant(d, "ZTS_INET_ADDRSTRLEN", SWIG_From_int(static_cast(16))); - SWIG_Python_SetConstant(d, "ZTS_INET6_ADDRSTRLEN", SWIG_From_int(static_cast(46))); - SWIG_Python_SetConstant(d, "ZTS_IP_MAX_STR_LEN", SWIG_From_int(static_cast(46))); - SWIG_Python_SetConstant(d, "ZTS_STORE_DATA_LEN", SWIG_From_int(static_cast(4096))); - SWIG_Python_SetConstant(d, "ZTS_MAX_NETWORK_SHORT_NAME_LENGTH", SWIG_From_int(static_cast(127))); - SWIG_Python_SetConstant(d, "ZTS_MAX_NETWORK_ROUTES", SWIG_From_int(static_cast(32))); - SWIG_Python_SetConstant(d, "ZTS_MAX_ASSIGNED_ADDRESSES", SWIG_From_int(static_cast(16))); - SWIG_Python_SetConstant(d, "ZTS_MAX_PEER_NETWORK_PATHS", SWIG_From_int(static_cast(16))); - SWIG_Python_SetConstant(d, "ZTS_MAX_MULTICAST_SUBSCRIPTIONS", SWIG_From_int(static_cast(1024))); - SWIG_Python_SetConstant(d, "ZTS_MAX_ENDPOINT_STR_LEN", SWIG_From_int(static_cast(46 + 6))); - SWIG_Python_SetConstant(d, "ZTS_SOCK_STREAM", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_SOCK_DGRAM", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_SOCK_RAW", SWIG_From_int(static_cast(0x0003))); - SWIG_Python_SetConstant(d, "ZTS_AF_UNSPEC", SWIG_From_int(static_cast(0x0000))); - SWIG_Python_SetConstant(d, "ZTS_AF_INET", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_AF_INET6", SWIG_From_int(static_cast(0x000a))); - SWIG_Python_SetConstant(d, "ZTS_PF_INET", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_PF_INET6", SWIG_From_int(static_cast(0x000a))); - SWIG_Python_SetConstant(d, "ZTS_PF_UNSPEC", SWIG_From_int(static_cast(0x0000))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_IP", SWIG_From_int(static_cast(0x0000))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_ICMP", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_TCP", SWIG_From_int(static_cast(0x0006))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_UDP", SWIG_From_int(static_cast(0x0011))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_IPV6", SWIG_From_int(static_cast(0x0029))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_ICMPV6", SWIG_From_int(static_cast(0x003a))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_UDPLITE", SWIG_From_int(static_cast(0x0088))); - SWIG_Python_SetConstant(d, "ZTS_IPPROTO_RAW", SWIG_From_int(static_cast(0x00ff))); - SWIG_Python_SetConstant(d, "ZTS_MSG_PEEK", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_MSG_WAITALL", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_MSG_OOB", SWIG_From_int(static_cast(0x0004))); - SWIG_Python_SetConstant(d, "ZTS_MSG_DONTWAIT", SWIG_From_int(static_cast(0x0008))); - SWIG_Python_SetConstant(d, "ZTS_MSG_MORE", SWIG_From_int(static_cast(0x0010))); - SWIG_Python_SetConstant(d, "ZTS_IOCPARM_MASK", SWIG_From_unsigned_SS_int(static_cast(0x7fU))); - SWIG_Python_SetConstant(d, "ZTS_IOC_VOID", SWIG_From_unsigned_SS_long(static_cast(0x20000000UL))); - SWIG_Python_SetConstant(d, "ZTS_IOC_OUT", SWIG_From_unsigned_SS_long(static_cast(0x40000000UL))); - SWIG_Python_SetConstant(d, "ZTS_IOC_IN", SWIG_From_unsigned_SS_long(static_cast(0x80000000UL))); - SWIG_Python_SetConstant( - d, - "ZTS_IOC_INOUT", - SWIG_From_unsigned_SS_long(static_cast((0x80000000UL | 0x40000000UL)))); - SWIG_Python_SetConstant( - d, - "ZTS_NETWORK_STATUS_REQUESTING_CONFIGURATION", - SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_REQUESTING_CONFIGURATION))); - SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_OK", SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_OK))); - SWIG_Python_SetConstant( - d, - "ZTS_NETWORK_STATUS_ACCESS_DENIED", - SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_ACCESS_DENIED))); - SWIG_Python_SetConstant( - d, - "ZTS_NETWORK_STATUS_NOT_FOUND", - SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_NOT_FOUND))); - SWIG_Python_SetConstant( - d, - "ZTS_NETWORK_STATUS_PORT_ERROR", - SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_PORT_ERROR))); - SWIG_Python_SetConstant( - d, - "ZTS_NETWORK_STATUS_CLIENT_TOO_OLD", - SWIG_From_int(static_cast(ZTS_NETWORK_STATUS_CLIENT_TOO_OLD))); - SWIG_Python_SetConstant(d, "ZTS_NETWORK_TYPE_PRIVATE", SWIG_From_int(static_cast(ZTS_NETWORK_TYPE_PRIVATE))); - SWIG_Python_SetConstant(d, "ZTS_NETWORK_TYPE_PUBLIC", SWIG_From_int(static_cast(ZTS_NETWORK_TYPE_PUBLIC))); - SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_LEAF", SWIG_From_int(static_cast(ZTS_PEER_ROLE_LEAF))); - SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_MOON", SWIG_From_int(static_cast(ZTS_PEER_ROLE_MOON))); - SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_PLANET", SWIG_From_int(static_cast(ZTS_PEER_ROLE_PLANET))); - SWIG_Python_SetConstant(d, "ZTS_MAX_NUM_ROOTS", SWIG_From_int(static_cast(16))); - SWIG_Python_SetConstant(d, "ZTS_MAX_ENDPOINTS_PER_ROOT", SWIG_From_int(static_cast(32))); - SWIG_addvarlink(globals, "_userEventCallback", Swig_var__userEventCallback_get, Swig_var__userEventCallback_set); - SWIG_Python_SetConstant(d, "ZTS_DISABLE_CENTRAL_API", SWIG_From_int(static_cast(1))); - SWIG_Python_SetConstant(d, "ZTS_ID_STR_BUF_LEN", SWIG_From_int(static_cast(384))); - SWIG_Python_SetConstant(d, "ZTS_SOL_SOCKET", SWIG_From_int(static_cast(0x0fff))); - SWIG_Python_SetConstant(d, "ZTS_SO_DEBUG", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_SO_ACCEPTCONN", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_SO_REUSEADDR", SWIG_From_int(static_cast(0x0004))); - SWIG_Python_SetConstant(d, "ZTS_SO_KEEPALIVE", SWIG_From_int(static_cast(0x0008))); - SWIG_Python_SetConstant(d, "ZTS_SO_DONTROUTE", SWIG_From_int(static_cast(0x0010))); - SWIG_Python_SetConstant(d, "ZTS_SO_BROADCAST", SWIG_From_int(static_cast(0x0020))); - SWIG_Python_SetConstant(d, "ZTS_SO_USELOOPBACK", SWIG_From_int(static_cast(0x0040))); - SWIG_Python_SetConstant(d, "ZTS_SO_LINGER", SWIG_From_int(static_cast(0x0080))); - SWIG_Python_SetConstant(d, "ZTS_SO_OOBINLINE", SWIG_From_int(static_cast(0x0100))); - SWIG_Python_SetConstant(d, "ZTS_SO_REUSEPORT", SWIG_From_int(static_cast(0x0200))); - SWIG_Python_SetConstant(d, "ZTS_SO_SNDBUF", SWIG_From_int(static_cast(0x1001))); - SWIG_Python_SetConstant(d, "ZTS_SO_RCVBUF", SWIG_From_int(static_cast(0x1002))); - SWIG_Python_SetConstant(d, "ZTS_SO_SNDLOWAT", SWIG_From_int(static_cast(0x1003))); - SWIG_Python_SetConstant(d, "ZTS_SO_RCVLOWAT", SWIG_From_int(static_cast(0x1004))); - SWIG_Python_SetConstant(d, "ZTS_SO_SNDTIMEO", SWIG_From_int(static_cast(0x1005))); - SWIG_Python_SetConstant(d, "ZTS_SO_RCVTIMEO", SWIG_From_int(static_cast(0x1006))); - SWIG_Python_SetConstant(d, "ZTS_SO_ERROR", SWIG_From_int(static_cast(0x1007))); - SWIG_Python_SetConstant(d, "ZTS_SO_TYPE", SWIG_From_int(static_cast(0x1008))); - SWIG_Python_SetConstant(d, "ZTS_SO_CONTIMEO", SWIG_From_int(static_cast(0x1009))); - SWIG_Python_SetConstant(d, "ZTS_SO_NO_CHECK", SWIG_From_int(static_cast(0x100a))); - SWIG_Python_SetConstant(d, "ZTS_SO_BINDTODEVICE", SWIG_From_int(static_cast(0x100b))); - SWIG_Python_SetConstant(d, "ZTS_IP_TOS", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_IP_TTL", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_IP_PKTINFO", SWIG_From_int(static_cast(0x0008))); - SWIG_Python_SetConstant(d, "ZTS_TCP_NODELAY", SWIG_From_int(static_cast(0x0001))); - SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPALIVE", SWIG_From_int(static_cast(0x0002))); - SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPIDLE", SWIG_From_int(static_cast(0x0003))); - SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPINTVL", SWIG_From_int(static_cast(0x0004))); - SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPCNT", SWIG_From_int(static_cast(0x0005))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_CHECKSUM", SWIG_From_int(static_cast(0x0007))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_V6ONLY", SWIG_From_int(static_cast(0x001b))); - SWIG_Python_SetConstant(d, "ZTS_UDPLITE_SEND_CSCOV", SWIG_From_int(static_cast(0x01))); - SWIG_Python_SetConstant(d, "ZTS_UDPLITE_RECV_CSCOV", SWIG_From_int(static_cast(0x02))); - SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_TTL", SWIG_From_int(static_cast(5))); - SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_IF", SWIG_From_int(static_cast(6))); - SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_LOOP", SWIG_From_int(static_cast(7))); - SWIG_Python_SetConstant(d, "ZTS_IP_ADD_MEMBERSHIP", SWIG_From_int(static_cast(3))); - SWIG_Python_SetConstant(d, "ZTS_IP_DROP_MEMBERSHIP", SWIG_From_int(static_cast(4))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_JOIN_GROUP", SWIG_From_int(static_cast(12))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_ADD_MEMBERSHIP", SWIG_From_int(static_cast(12))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_LEAVE_GROUP", SWIG_From_int(static_cast(13))); - SWIG_Python_SetConstant(d, "ZTS_IPV6_DROP_MEMBERSHIP", SWIG_From_int(static_cast(13))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_TOS_MASK", SWIG_From_int(static_cast(0x1E))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_LOWDELAY", SWIG_From_int(static_cast(0x10))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_THROUGHPUT", SWIG_From_int(static_cast(0x08))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_RELIABILITY", SWIG_From_int(static_cast(0x04))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_LOWCOST", SWIG_From_int(static_cast(0x02))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_MINCOST", SWIG_From_int(static_cast(0x02))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_MASK", SWIG_From_int(static_cast(0xe0))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_NETCONTROL", SWIG_From_int(static_cast(0xe0))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_INTERNETCONTROL", SWIG_From_int(static_cast(0xc0))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_CRITIC_ECP", SWIG_From_int(static_cast(0xa0))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_FLASHOVERRIDE", SWIG_From_int(static_cast(0x80))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_FLASH", SWIG_From_int(static_cast(0x60))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_IMMEDIATE", SWIG_From_int(static_cast(0x40))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_PRIORITY", SWIG_From_int(static_cast(0x20))); - SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_ROUTINE", SWIG_From_int(static_cast(0x00))); - SWIG_Python_SetConstant(d, "LWIP_SOCKET_OFFSET", SWIG_From_int(static_cast(0))); - SWIG_Python_SetConstant(d, "MEMP_NUM_NETCONN", SWIG_From_int(static_cast(1024))); - SWIG_Python_SetConstant(d, "ZTS_FD_SETSIZE", SWIG_From_int(static_cast(1024))); - SWIG_Python_SetConstant(d, "ZTS_F_GETFL", SWIG_From_int(static_cast(0x0003))); - SWIG_Python_SetConstant(d, "ZTS_F_SETFL", SWIG_From_int(static_cast(0x0004))); - SWIG_Python_SetConstant(d, "ZTS_O_NONBLOCK", SWIG_From_int(static_cast(1))); - SWIG_Python_SetConstant(d, "ZTS_O_NDELAY", SWIG_From_int(static_cast(1))); - SWIG_Python_SetConstant(d, "ZTS_O_RDONLY", SWIG_From_int(static_cast(2))); - SWIG_Python_SetConstant(d, "ZTS_O_WRONLY", SWIG_From_int(static_cast(4))); - SWIG_Python_SetConstant(d, "ZTS_O_RDWR", SWIG_From_int(static_cast((2 | 4)))); - SWIG_Python_SetConstant(d, "ZTS_POLLIN", SWIG_From_int(static_cast(0x001))); - SWIG_Python_SetConstant(d, "ZTS_POLLOUT", SWIG_From_int(static_cast(0x002))); - SWIG_Python_SetConstant(d, "ZTS_POLLERR", SWIG_From_int(static_cast(0x004))); - SWIG_Python_SetConstant(d, "ZTS_POLLNVAL", SWIG_From_int(static_cast(0x008))); - SWIG_Python_SetConstant(d, "ZTS_POLLRDNORM", SWIG_From_int(static_cast(0x010))); - SWIG_Python_SetConstant(d, "ZTS_POLLRDBAND", SWIG_From_int(static_cast(0x020))); - SWIG_Python_SetConstant(d, "ZTS_POLLPRI", SWIG_From_int(static_cast(0x040))); - SWIG_Python_SetConstant(d, "ZTS_POLLWRNORM", SWIG_From_int(static_cast(0x080))); - SWIG_Python_SetConstant(d, "ZTS_POLLWRBAND", SWIG_From_int(static_cast(0x100))); - SWIG_Python_SetConstant(d, "ZTS_POLLHUP", SWIG_From_int(static_cast(0x200))); - SWIG_Python_SetConstant(d, "ZTS_MSG_TRUNC", SWIG_From_int(static_cast(0x04))); - SWIG_Python_SetConstant(d, "ZTS_MSG_CTRUNC", SWIG_From_int(static_cast(0x08))); - SWIG_Python_SetConstant(d, "ZTS_SHUT_RD", SWIG_From_int(static_cast(0x0))); - SWIG_Python_SetConstant(d, "ZTS_SHUT_WR", SWIG_From_int(static_cast(0x1))); - SWIG_Python_SetConstant(d, "ZTS_SHUT_RDWR", SWIG_From_int(static_cast(0x2))); -#if PY_VERSION_HEX >= 0x03000000 - return m; + return NULL; #else return; +#endif + } + PyDict_SetItemString(md, "cvar", globals); + Py_DECREF(globals); + SWIG_addvarlink(globals, "zts_errno", Swig_var_zts_errno_get, Swig_var_zts_errno_set); + SWIG_Python_SetConstant(d, "ZTS_EPERM",SWIG_From_int(static_cast< int >(ZTS_EPERM))); + SWIG_Python_SetConstant(d, "ZTS_ENOENT",SWIG_From_int(static_cast< int >(ZTS_ENOENT))); + SWIG_Python_SetConstant(d, "ZTS_ESRCH",SWIG_From_int(static_cast< int >(ZTS_ESRCH))); + SWIG_Python_SetConstant(d, "ZTS_EINTR",SWIG_From_int(static_cast< int >(ZTS_EINTR))); + SWIG_Python_SetConstant(d, "ZTS_EIO",SWIG_From_int(static_cast< int >(ZTS_EIO))); + SWIG_Python_SetConstant(d, "ZTS_ENXIO",SWIG_From_int(static_cast< int >(ZTS_ENXIO))); + SWIG_Python_SetConstant(d, "ZTS_EBADF",SWIG_From_int(static_cast< int >(ZTS_EBADF))); + SWIG_Python_SetConstant(d, "ZTS_EAGAIN",SWIG_From_int(static_cast< int >(ZTS_EAGAIN))); + SWIG_Python_SetConstant(d, "ZTS_EWOULDBLOCK",SWIG_From_int(static_cast< int >(ZTS_EWOULDBLOCK))); + SWIG_Python_SetConstant(d, "ZTS_ENOMEM",SWIG_From_int(static_cast< int >(ZTS_ENOMEM))); + SWIG_Python_SetConstant(d, "ZTS_EACCES",SWIG_From_int(static_cast< int >(ZTS_EACCES))); + SWIG_Python_SetConstant(d, "ZTS_EFAULT",SWIG_From_int(static_cast< int >(ZTS_EFAULT))); + SWIG_Python_SetConstant(d, "ZTS_EBUSY",SWIG_From_int(static_cast< int >(ZTS_EBUSY))); + SWIG_Python_SetConstant(d, "ZTS_EEXIST",SWIG_From_int(static_cast< int >(ZTS_EEXIST))); + SWIG_Python_SetConstant(d, "ZTS_ENODEV",SWIG_From_int(static_cast< int >(ZTS_ENODEV))); + SWIG_Python_SetConstant(d, "ZTS_EINVAL",SWIG_From_int(static_cast< int >(ZTS_EINVAL))); + SWIG_Python_SetConstant(d, "ZTS_ENFILE",SWIG_From_int(static_cast< int >(ZTS_ENFILE))); + SWIG_Python_SetConstant(d, "ZTS_EMFILE",SWIG_From_int(static_cast< int >(ZTS_EMFILE))); + SWIG_Python_SetConstant(d, "ZTS_ENOSYS",SWIG_From_int(static_cast< int >(ZTS_ENOSYS))); + SWIG_Python_SetConstant(d, "ZTS_ENOTSOCK",SWIG_From_int(static_cast< int >(ZTS_ENOTSOCK))); + SWIG_Python_SetConstant(d, "ZTS_EDESTADDRREQ",SWIG_From_int(static_cast< int >(ZTS_EDESTADDRREQ))); + SWIG_Python_SetConstant(d, "ZTS_EMSGSIZE",SWIG_From_int(static_cast< int >(ZTS_EMSGSIZE))); + SWIG_Python_SetConstant(d, "ZTS_EPROTOTYPE",SWIG_From_int(static_cast< int >(ZTS_EPROTOTYPE))); + SWIG_Python_SetConstant(d, "ZTS_ENOPROTOOPT",SWIG_From_int(static_cast< int >(ZTS_ENOPROTOOPT))); + SWIG_Python_SetConstant(d, "ZTS_EPROTONOSUPPORT",SWIG_From_int(static_cast< int >(ZTS_EPROTONOSUPPORT))); + SWIG_Python_SetConstant(d, "ZTS_ESOCKTNOSUPPORT",SWIG_From_int(static_cast< int >(ZTS_ESOCKTNOSUPPORT))); + SWIG_Python_SetConstant(d, "ZTS_EOPNOTSUPP",SWIG_From_int(static_cast< int >(ZTS_EOPNOTSUPP))); + SWIG_Python_SetConstant(d, "ZTS_EPFNOSUPPORT",SWIG_From_int(static_cast< int >(ZTS_EPFNOSUPPORT))); + SWIG_Python_SetConstant(d, "ZTS_EAFNOSUPPORT",SWIG_From_int(static_cast< int >(ZTS_EAFNOSUPPORT))); + SWIG_Python_SetConstant(d, "ZTS_EADDRINUSE",SWIG_From_int(static_cast< int >(ZTS_EADDRINUSE))); + SWIG_Python_SetConstant(d, "ZTS_EADDRNOTAVAIL",SWIG_From_int(static_cast< int >(ZTS_EADDRNOTAVAIL))); + SWIG_Python_SetConstant(d, "ZTS_ENETDOWN",SWIG_From_int(static_cast< int >(ZTS_ENETDOWN))); + SWIG_Python_SetConstant(d, "ZTS_ENETUNREACH",SWIG_From_int(static_cast< int >(ZTS_ENETUNREACH))); + SWIG_Python_SetConstant(d, "ZTS_ECONNABORTED",SWIG_From_int(static_cast< int >(ZTS_ECONNABORTED))); + SWIG_Python_SetConstant(d, "ZTS_ECONNRESET",SWIG_From_int(static_cast< int >(ZTS_ECONNRESET))); + SWIG_Python_SetConstant(d, "ZTS_ENOBUFS",SWIG_From_int(static_cast< int >(ZTS_ENOBUFS))); + SWIG_Python_SetConstant(d, "ZTS_EISCONN",SWIG_From_int(static_cast< int >(ZTS_EISCONN))); + SWIG_Python_SetConstant(d, "ZTS_ENOTCONN",SWIG_From_int(static_cast< int >(ZTS_ENOTCONN))); + SWIG_Python_SetConstant(d, "ZTS_ETIMEDOUT",SWIG_From_int(static_cast< int >(ZTS_ETIMEDOUT))); + SWIG_Python_SetConstant(d, "ZTS_EHOSTUNREACH",SWIG_From_int(static_cast< int >(ZTS_EHOSTUNREACH))); + SWIG_Python_SetConstant(d, "ZTS_EALREADY",SWIG_From_int(static_cast< int >(ZTS_EALREADY))); + SWIG_Python_SetConstant(d, "ZTS_EINPROGRESS",SWIG_From_int(static_cast< int >(ZTS_EINPROGRESS))); + SWIG_Python_SetConstant(d, "ZTS_MAC_ADDRSTRLEN",SWIG_From_int(static_cast< int >(18))); + SWIG_Python_SetConstant(d, "ZTS_INET_ADDRSTRLEN",SWIG_From_int(static_cast< int >(16))); + SWIG_Python_SetConstant(d, "ZTS_INET6_ADDRSTRLEN",SWIG_From_int(static_cast< int >(46))); + SWIG_Python_SetConstant(d, "ZTS_IP_MAX_STR_LEN",SWIG_From_int(static_cast< int >(46))); + SWIG_Python_SetConstant(d, "ZTS_STORE_DATA_LEN",SWIG_From_int(static_cast< int >(4096))); + SWIG_Python_SetConstant(d, "ZTS_MAX_NETWORK_SHORT_NAME_LENGTH",SWIG_From_int(static_cast< int >(127))); + SWIG_Python_SetConstant(d, "ZTS_MAX_NETWORK_ROUTES",SWIG_From_int(static_cast< int >(32))); + SWIG_Python_SetConstant(d, "ZTS_MAX_ASSIGNED_ADDRESSES",SWIG_From_int(static_cast< int >(16))); + SWIG_Python_SetConstant(d, "ZTS_MAX_PEER_NETWORK_PATHS",SWIG_From_int(static_cast< int >(16))); + SWIG_Python_SetConstant(d, "ZTS_MAX_MULTICAST_SUBSCRIPTIONS",SWIG_From_int(static_cast< int >(1024))); + SWIG_Python_SetConstant(d, "ZTS_MAX_ENDPOINT_STR_LEN",SWIG_From_int(static_cast< int >(46+6))); + SWIG_Python_SetConstant(d, "ZTS_SOCK_STREAM",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_SOCK_DGRAM",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_SOCK_RAW",SWIG_From_int(static_cast< int >(0x0003))); + SWIG_Python_SetConstant(d, "ZTS_AF_UNSPEC",SWIG_From_int(static_cast< int >(0x0000))); + SWIG_Python_SetConstant(d, "ZTS_AF_INET",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_AF_INET6",SWIG_From_int(static_cast< int >(0x000a))); + SWIG_Python_SetConstant(d, "ZTS_PF_INET",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_PF_INET6",SWIG_From_int(static_cast< int >(0x000a))); + SWIG_Python_SetConstant(d, "ZTS_PF_UNSPEC",SWIG_From_int(static_cast< int >(0x0000))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_IP",SWIG_From_int(static_cast< int >(0x0000))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_ICMP",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_TCP",SWIG_From_int(static_cast< int >(0x0006))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_UDP",SWIG_From_int(static_cast< int >(0x0011))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_IPV6",SWIG_From_int(static_cast< int >(0x0029))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_ICMPV6",SWIG_From_int(static_cast< int >(0x003a))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_UDPLITE",SWIG_From_int(static_cast< int >(0x0088))); + SWIG_Python_SetConstant(d, "ZTS_IPPROTO_RAW",SWIG_From_int(static_cast< int >(0x00ff))); + SWIG_Python_SetConstant(d, "ZTS_MSG_PEEK",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_MSG_WAITALL",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_MSG_OOB",SWIG_From_int(static_cast< int >(0x0004))); + SWIG_Python_SetConstant(d, "ZTS_MSG_DONTWAIT",SWIG_From_int(static_cast< int >(0x0008))); + SWIG_Python_SetConstant(d, "ZTS_MSG_MORE",SWIG_From_int(static_cast< int >(0x0010))); + SWIG_Python_SetConstant(d, "ZTS_IOCPARM_MASK",SWIG_From_unsigned_SS_int(static_cast< unsigned int >(0x7fU))); + SWIG_Python_SetConstant(d, "ZTS_IOC_VOID",SWIG_From_unsigned_SS_long(static_cast< unsigned long >(0x20000000UL))); + SWIG_Python_SetConstant(d, "ZTS_IOC_OUT",SWIG_From_unsigned_SS_long(static_cast< unsigned long >(0x40000000UL))); + SWIG_Python_SetConstant(d, "ZTS_IOC_IN",SWIG_From_unsigned_SS_long(static_cast< unsigned long >(0x80000000UL))); + SWIG_Python_SetConstant(d, "ZTS_IOC_INOUT",SWIG_From_unsigned_SS_long(static_cast< unsigned long >((0x80000000UL|0x40000000UL)))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_REQUESTING_CONFIGURATION",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_REQUESTING_CONFIGURATION))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_OK",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_OK))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_ACCESS_DENIED",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_ACCESS_DENIED))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_NOT_FOUND",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_NOT_FOUND))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_PORT_ERROR",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_PORT_ERROR))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_STATUS_CLIENT_TOO_OLD",SWIG_From_int(static_cast< int >(ZTS_NETWORK_STATUS_CLIENT_TOO_OLD))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_TYPE_PRIVATE",SWIG_From_int(static_cast< int >(ZTS_NETWORK_TYPE_PRIVATE))); + SWIG_Python_SetConstant(d, "ZTS_NETWORK_TYPE_PUBLIC",SWIG_From_int(static_cast< int >(ZTS_NETWORK_TYPE_PUBLIC))); + SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_LEAF",SWIG_From_int(static_cast< int >(ZTS_PEER_ROLE_LEAF))); + SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_MOON",SWIG_From_int(static_cast< int >(ZTS_PEER_ROLE_MOON))); + SWIG_Python_SetConstant(d, "ZTS_PEER_ROLE_PLANET",SWIG_From_int(static_cast< int >(ZTS_PEER_ROLE_PLANET))); + SWIG_Python_SetConstant(d, "ZTS_MAX_NUM_ROOTS",SWIG_From_int(static_cast< int >(16))); + SWIG_Python_SetConstant(d, "ZTS_MAX_ENDPOINTS_PER_ROOT",SWIG_From_int(static_cast< int >(32))); + SWIG_Python_SetConstant(d, "ZTS_DISABLE_CENTRAL_API",SWIG_From_int(static_cast< int >(1))); + SWIG_Python_SetConstant(d, "ZTS_ID_STR_BUF_LEN",SWIG_From_int(static_cast< int >(384))); + SWIG_addvarlink(globals, "_userEventCallback", Swig_var__userEventCallback_get, Swig_var__userEventCallback_set); + SWIG_Python_SetConstant(d, "ZTS_SOL_SOCKET",SWIG_From_int(static_cast< int >(0x0fff))); + SWIG_Python_SetConstant(d, "ZTS_SO_DEBUG",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_SO_ACCEPTCONN",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_SO_REUSEADDR",SWIG_From_int(static_cast< int >(0x0004))); + SWIG_Python_SetConstant(d, "ZTS_SO_KEEPALIVE",SWIG_From_int(static_cast< int >(0x0008))); + SWIG_Python_SetConstant(d, "ZTS_SO_DONTROUTE",SWIG_From_int(static_cast< int >(0x0010))); + SWIG_Python_SetConstant(d, "ZTS_SO_BROADCAST",SWIG_From_int(static_cast< int >(0x0020))); + SWIG_Python_SetConstant(d, "ZTS_SO_USELOOPBACK",SWIG_From_int(static_cast< int >(0x0040))); + SWIG_Python_SetConstant(d, "ZTS_SO_LINGER",SWIG_From_int(static_cast< int >(0x0080))); + SWIG_Python_SetConstant(d, "ZTS_SO_OOBINLINE",SWIG_From_int(static_cast< int >(0x0100))); + SWIG_Python_SetConstant(d, "ZTS_SO_REUSEPORT",SWIG_From_int(static_cast< int >(0x0200))); + SWIG_Python_SetConstant(d, "ZTS_SO_SNDBUF",SWIG_From_int(static_cast< int >(0x1001))); + SWIG_Python_SetConstant(d, "ZTS_SO_RCVBUF",SWIG_From_int(static_cast< int >(0x1002))); + SWIG_Python_SetConstant(d, "ZTS_SO_SNDLOWAT",SWIG_From_int(static_cast< int >(0x1003))); + SWIG_Python_SetConstant(d, "ZTS_SO_RCVLOWAT",SWIG_From_int(static_cast< int >(0x1004))); + SWIG_Python_SetConstant(d, "ZTS_SO_SNDTIMEO",SWIG_From_int(static_cast< int >(0x1005))); + SWIG_Python_SetConstant(d, "ZTS_SO_RCVTIMEO",SWIG_From_int(static_cast< int >(0x1006))); + SWIG_Python_SetConstant(d, "ZTS_SO_ERROR",SWIG_From_int(static_cast< int >(0x1007))); + SWIG_Python_SetConstant(d, "ZTS_SO_TYPE",SWIG_From_int(static_cast< int >(0x1008))); + SWIG_Python_SetConstant(d, "ZTS_SO_CONTIMEO",SWIG_From_int(static_cast< int >(0x1009))); + SWIG_Python_SetConstant(d, "ZTS_SO_NO_CHECK",SWIG_From_int(static_cast< int >(0x100a))); + SWIG_Python_SetConstant(d, "ZTS_SO_BINDTODEVICE",SWIG_From_int(static_cast< int >(0x100b))); + SWIG_Python_SetConstant(d, "ZTS_IP_TOS",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_IP_TTL",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_IP_PKTINFO",SWIG_From_int(static_cast< int >(0x0008))); + SWIG_Python_SetConstant(d, "ZTS_TCP_NODELAY",SWIG_From_int(static_cast< int >(0x0001))); + SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPALIVE",SWIG_From_int(static_cast< int >(0x0002))); + SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPIDLE",SWIG_From_int(static_cast< int >(0x0003))); + SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPINTVL",SWIG_From_int(static_cast< int >(0x0004))); + SWIG_Python_SetConstant(d, "ZTS_TCP_KEEPCNT",SWIG_From_int(static_cast< int >(0x0005))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_CHECKSUM",SWIG_From_int(static_cast< int >(0x0007))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_V6ONLY",SWIG_From_int(static_cast< int >(0x001b))); + SWIG_Python_SetConstant(d, "ZTS_UDPLITE_SEND_CSCOV",SWIG_From_int(static_cast< int >(0x01))); + SWIG_Python_SetConstant(d, "ZTS_UDPLITE_RECV_CSCOV",SWIG_From_int(static_cast< int >(0x02))); + SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_TTL",SWIG_From_int(static_cast< int >(5))); + SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_IF",SWIG_From_int(static_cast< int >(6))); + SWIG_Python_SetConstant(d, "ZTS_IP_MULTICAST_LOOP",SWIG_From_int(static_cast< int >(7))); + SWIG_Python_SetConstant(d, "ZTS_IP_ADD_MEMBERSHIP",SWIG_From_int(static_cast< int >(3))); + SWIG_Python_SetConstant(d, "ZTS_IP_DROP_MEMBERSHIP",SWIG_From_int(static_cast< int >(4))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_JOIN_GROUP",SWIG_From_int(static_cast< int >(12))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_ADD_MEMBERSHIP",SWIG_From_int(static_cast< int >(12))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_LEAVE_GROUP",SWIG_From_int(static_cast< int >(13))); + SWIG_Python_SetConstant(d, "ZTS_IPV6_DROP_MEMBERSHIP",SWIG_From_int(static_cast< int >(13))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_TOS_MASK",SWIG_From_int(static_cast< int >(0x1E))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_LOWDELAY",SWIG_From_int(static_cast< int >(0x10))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_THROUGHPUT",SWIG_From_int(static_cast< int >(0x08))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_RELIABILITY",SWIG_From_int(static_cast< int >(0x04))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_LOWCOST",SWIG_From_int(static_cast< int >(0x02))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_MINCOST",SWIG_From_int(static_cast< int >(0x02))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_MASK",SWIG_From_int(static_cast< int >(0xe0))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_NETCONTROL",SWIG_From_int(static_cast< int >(0xe0))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_INTERNETCONTROL",SWIG_From_int(static_cast< int >(0xc0))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_CRITIC_ECP",SWIG_From_int(static_cast< int >(0xa0))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_FLASHOVERRIDE",SWIG_From_int(static_cast< int >(0x80))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_FLASH",SWIG_From_int(static_cast< int >(0x60))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_IMMEDIATE",SWIG_From_int(static_cast< int >(0x40))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_PRIORITY",SWIG_From_int(static_cast< int >(0x20))); + SWIG_Python_SetConstant(d, "ZTS_IPTOS_PREC_ROUTINE",SWIG_From_int(static_cast< int >(0x00))); + SWIG_Python_SetConstant(d, "LWIP_SOCKET_OFFSET",SWIG_From_int(static_cast< int >(0))); + SWIG_Python_SetConstant(d, "MEMP_NUM_NETCONN",SWIG_From_int(static_cast< int >(1024))); + SWIG_Python_SetConstant(d, "ZTS_FD_SETSIZE",SWIG_From_int(static_cast< int >(1024))); + SWIG_Python_SetConstant(d, "ZTS_F_GETFL",SWIG_From_int(static_cast< int >(0x0003))); + SWIG_Python_SetConstant(d, "ZTS_F_SETFL",SWIG_From_int(static_cast< int >(0x0004))); + SWIG_Python_SetConstant(d, "ZTS_O_NONBLOCK",SWIG_From_int(static_cast< int >(1))); + SWIG_Python_SetConstant(d, "ZTS_O_NDELAY",SWIG_From_int(static_cast< int >(1))); + SWIG_Python_SetConstant(d, "ZTS_O_RDONLY",SWIG_From_int(static_cast< int >(2))); + SWIG_Python_SetConstant(d, "ZTS_O_WRONLY",SWIG_From_int(static_cast< int >(4))); + SWIG_Python_SetConstant(d, "ZTS_O_RDWR",SWIG_From_int(static_cast< int >((2|4)))); + SWIG_Python_SetConstant(d, "ZTS_POLLIN",SWIG_From_int(static_cast< int >(0x001))); + SWIG_Python_SetConstant(d, "ZTS_POLLOUT",SWIG_From_int(static_cast< int >(0x002))); + SWIG_Python_SetConstant(d, "ZTS_POLLERR",SWIG_From_int(static_cast< int >(0x004))); + SWIG_Python_SetConstant(d, "ZTS_POLLNVAL",SWIG_From_int(static_cast< int >(0x008))); + SWIG_Python_SetConstant(d, "ZTS_POLLRDNORM",SWIG_From_int(static_cast< int >(0x010))); + SWIG_Python_SetConstant(d, "ZTS_POLLRDBAND",SWIG_From_int(static_cast< int >(0x020))); + SWIG_Python_SetConstant(d, "ZTS_POLLPRI",SWIG_From_int(static_cast< int >(0x040))); + SWIG_Python_SetConstant(d, "ZTS_POLLWRNORM",SWIG_From_int(static_cast< int >(0x080))); + SWIG_Python_SetConstant(d, "ZTS_POLLWRBAND",SWIG_From_int(static_cast< int >(0x100))); + SWIG_Python_SetConstant(d, "ZTS_POLLHUP",SWIG_From_int(static_cast< int >(0x200))); + SWIG_Python_SetConstant(d, "ZTS_MSG_TRUNC",SWIG_From_int(static_cast< int >(0x04))); + SWIG_Python_SetConstant(d, "ZTS_MSG_CTRUNC",SWIG_From_int(static_cast< int >(0x08))); + SWIG_Python_SetConstant(d, "ZTS_SHUT_RD",SWIG_From_int(static_cast< int >(0x0))); + SWIG_Python_SetConstant(d, "ZTS_SHUT_WR",SWIG_From_int(static_cast< int >(0x1))); + SWIG_Python_SetConstant(d, "ZTS_SHUT_RDWR",SWIG_From_int(static_cast< int >(0x2))); +#if PY_VERSION_HEX >= 0x03000000 + return m; +#else + return; #endif } + diff --git a/src/bindings/python/zt_wrap.h b/src/bindings/python/zt_wrap.h index dc5ed95..78cb64e 100644 --- a/src/bindings/python/zt_wrap.h +++ b/src/bindings/python/zt_wrap.h @@ -14,50 +14,47 @@ #include #include -class SwigDirector_PythonDirectorCallbackClass - : public PythonDirectorCallbackClass - , public Swig::Director { - public: - SwigDirector_PythonDirectorCallbackClass(PyObject* self); - virtual void on_zerotier_event(zts_event_msg_t* msg); + +class SwigDirector_PythonDirectorCallbackClass : public PythonDirectorCallbackClass, public Swig::Director { + +public: + SwigDirector_PythonDirectorCallbackClass(PyObject *self); + virtual void on_zerotier_event(zts_event_msg_t *msg); virtual ~SwigDirector_PythonDirectorCallbackClass(); - /* Internal director utilities */ - public: - bool swig_get_inner(const char* swig_protected_method_name) const - { - std::map::const_iterator iv = swig_inner.find(swig_protected_method_name); - return (iv != swig_inner.end() ? iv->second : false); +/* Internal director utilities */ +public: + bool swig_get_inner(const char *swig_protected_method_name) const { + std::map::const_iterator iv = swig_inner.find(swig_protected_method_name); + return (iv != swig_inner.end() ? iv->second : false); } - void swig_set_inner(const char* swig_protected_method_name, bool swig_val) const - { - swig_inner[swig_protected_method_name] = swig_val; + void swig_set_inner(const char *swig_protected_method_name, bool swig_val) const { + swig_inner[swig_protected_method_name] = swig_val; } - - private: +private: mutable std::map swig_inner; #if defined(SWIG_PYTHON_DIRECTOR_VTABLE) - /* VTable implementation */ - PyObject* swig_get_method(size_t method_index, const char* method_name) const - { - PyObject* method = vtable[method_index]; - if (! method) { - swig::SwigVar_PyObject name = SWIG_Python_str_FromChar(method_name); - method = PyObject_GetAttr(swig_get_self(), name); - if (! method) { - std::string msg = "Method in class PythonDirectorCallbackClass doesn't exist, undefined "; - msg += method_name; - Swig::DirectorMethodException::raise(msg.c_str()); - } - vtable[method_index] = method; +/* VTable implementation */ + PyObject *swig_get_method(size_t method_index, const char *method_name) const { + PyObject *method = vtable[method_index]; + if (!method) { + swig::SwigVar_PyObject name = SWIG_Python_str_FromChar(method_name); + method = PyObject_GetAttr(swig_get_self(), name); + if (!method) { + std::string msg = "Method in class PythonDirectorCallbackClass doesn't exist, undefined "; + msg += method_name; + Swig::DirectorMethodException::raise(msg.c_str()); } - return method; + vtable[method_index] = method; + } + return method; } - - private: +private: mutable swig::SwigVar_PyObject vtable[1]; #endif + }; + #endif diff --git a/test/selftest.py b/test/selftest.py index 1519a2d..bd52823 100644 --- a/test/selftest.py +++ b/test/selftest.py @@ -89,6 +89,8 @@ def main(): time.sleep(1) print("Joined network") + print("addr = ", n.addr_get_ipv4(net_id)) + # # Example server #