Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /usr/lib/python2.7/dist-packages/twisted/runner/ |
Upload File : |
/* * Copyright (c) 2001-2004 Twisted Matrix Laboratories. * See LICENSE for details. * */ /* portmap.c: A simple Python wrapper for pmap_set(3) and pmap_unset(3) */ #include <Python.h> #include <rpc/rpc.h> #include <rpc/pmap_clnt.h> static PyObject * portmap_set(PyObject *self, PyObject *args) { unsigned long program, version; int protocol; unsigned short port; if (!PyArg_ParseTuple(args, "llih:set", &program, &version, &protocol, &port)) return NULL; pmap_unset(program, version); pmap_set(program, version, protocol, port); Py_INCREF(Py_None); return Py_None; } static PyObject * portmap_unset(PyObject *self, PyObject *args) { unsigned long program, version; if (!PyArg_ParseTuple(args, "ll:unset", &program, &version)) return NULL; pmap_unset(program, version); Py_INCREF(Py_None); return Py_None; } static PyMethodDef PortmapMethods[] = { {"set", portmap_set, METH_VARARGS, "Set an entry in the portmapper."}, {"unset", portmap_unset, METH_VARARGS, "Unset an entry in the portmapper."}, {NULL, NULL, 0, NULL} }; void initportmap(void) { (void) Py_InitModule("portmap", PortmapMethods); }