Add basic function for management wlan configuration
This commit is contained in:
19
src/wtp/wtp_radio.c
Normal file
19
src/wtp/wtp_radio.c
Normal file
@ -0,0 +1,19 @@
|
||||
#include "wtp.h"
|
||||
#include "wtp_radio.h"
|
||||
|
||||
/* */
|
||||
uint32_t wtp_radio_create_wlan(struct capwap_parsed_packet* packet, struct capwap_80211_assignbssid_element* bssid) {
|
||||
return CAPWAP_RESULTCODE_SUCCESS;
|
||||
}
|
||||
|
||||
/* */
|
||||
uint32_t wtp_radio_update_wlan(struct capwap_parsed_packet* packet) {
|
||||
/* TODO */
|
||||
return CAPWAP_RESULTCODE_SUCCESS;
|
||||
}
|
||||
|
||||
/* */
|
||||
uint32_t wtp_radio_delete_wlan(struct capwap_parsed_packet* packet) {
|
||||
/* TODO */
|
||||
return CAPWAP_RESULTCODE_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user