20da5c8986
This allows Python to be used to control wpa_supplicant/hostapd through the control interface. Signed-hostap: Jouni Malinen <j@w1.fi>
22 lines
840 B
Python
22 lines
840 B
Python
#!/usr/bin/python
|
|
#
|
|
# Python bindings for wpa_ctrl (wpa_supplicant/hostapd control interface)
|
|
# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
|
|
#
|
|
# This software may be distributed under the terms of the BSD license.
|
|
# See README for more details.
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
ext = Extension(name = 'wpaspy',
|
|
sources = ['../src/common/wpa_ctrl.c',
|
|
'../src/utils/os_unix.c',
|
|
'wpaspy.c'],
|
|
extra_compile_args = ["-I../src/common",
|
|
"-I../src/utils",
|
|
"-DCONFIG_CTRL_IFACE",
|
|
"-DCONFIG_CTRL_IFACE_UNIX"])
|
|
|
|
setup(name = 'wpaspy',
|
|
ext_modules = [ext],
|
|
description = 'Python bindings for wpa_ctrl (wpa_supplicant/hostapd)')
|