- 论坛徽章:
- 0
|
具体的bind函数包装代码,我改一下这段代码试试
SWIGINTERN PyObject *_wrap_bind(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
PyObject *resultobj = 0;
UDTSOCKET arg1 ;
sockaddr *arg2 = (sockaddr *) 0 ;
int arg3 ;
int result;
int val1 ;
int ecode1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
int val3 ;
int ecode3 = 0 ;
PyObject * obj0 = 0 ;
PyObject * obj1 = 0 ;
PyObject * obj2 = 0 ;
if (!PyArg_ParseTuple(args,(char *)"OOO:bind",&obj0,&obj1,&obj2)) SWIG_fail;
ecode1 = SWIG_AsVal_int(obj0, &val1);
if (!SWIG_IsOK(ecode1)) {
SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "bind" "', argument " "1"" of type '" "UDTSOCKET""'");
}
arg1 = static_cast< UDTSOCKET >(val1);
res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_sockaddr, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "bind" "', argument " "2"" of type '" "sockaddr const *""'");
}
arg2 = reinterpret_cast< sockaddr * >(argp2);
ecode3 = SWIG_AsVal_int(obj2, &val3);
if (!SWIG_IsOK(ecode3)) {
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "bind" "', argument " "3"" of type '" "int""'");
}
arg3 = static_cast< int >(val3);
result = (int)UDT::bind(arg1,(sockaddr const *)arg2,arg3);
resultobj = SWIG_From_int(static_cast< int >(result));
return resultobj;
fail:
return NULL;
} |
|