12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /**
- * $Id$
- *
- * Copyright (C) 2012 Konstantin Mosesov
- *
- * This file is part of Kamailio, a free SIP server.
- *
- * This file is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- *
- * This file is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
- // Python includes
- #include <Python.h>
- #include "structmember.h"
- // Other/system includes
- #include <libgen.h>
- // router includes
- #include "../../str.h"
- #include "../../sr_module.h"
- // local includes
- #include "python_exec.h"
- #include "python_mod.h"
- #include "python_iface.h"
- #include "python_msgobj.h"
- #include "python_support.h"
- #include "mod_Router.h"
- PyMethodDef RouterMethods[] = {
- {NULL, NULL, 0, NULL}
- };
- void init_mod_Router(void)
- {
- main_module = Py_InitModule("Router", RouterMethods);
- main_module_dict = PyModule_GetDict(main_module);
- Py_INCREF(main_module);
- #ifdef WITH_EXTRA_DEBUG
- LM_ERR("Module 'Router' has been initialized\n");
- #endif
- }
- void destroy_mod_Router(void)
- {
- Py_XDECREF(main_module);
- Py_XDECREF(main_module_dict);
- #ifdef WITH_EXTRA_DEBUG
- LM_ERR("Module 'Router' has been destroyed\n");
- #endif
- }
|