-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwlan1_set_wlan_configuration_config.go
37 lines (34 loc) · 1.47 KB
/
wlan1_set_wlan_configuration_config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package lan
import (
"encoding/xml"
"github.com/nitram509/gofritz/pkg/soap"
"github.com/nitram509/gofritz/pkg/tr064model"
)
// Wlan1SetWlanConfigurationConfig AUTO-GENERATED (do not edit) code from [wlanconfigSCPD],
// based on SOAP action 'SetConfig', Fritz!Box-System-Version 164.08.00
//
// [wlanconfigSCPD]: http://fritz.box:49000/wlanconfigSCPD.xml
func Wlan1SetWlanConfigurationConfig(session *soap.SoapSession, maxBitRate string, channel int, ssid string, beaconType string, macAddressControlEnabled bool, basicEncryptionModes string, basicAuthenticationMode string) (tr064model.SetWlanConfigurationConfigResponse, error) {
fbAction, err := soap.NewSoapRequest(session).
ReqPath("/upnp/control/wlanconfig1").
Uri("urn:dslforum-org:service:WLANConfiguration:1").
Action("SetConfig").
AddStringParam("NewMaxBitRate", maxBitRate).
AddIntParam("NewChannel", channel).
AddStringParam("NewSSID", ssid).
AddStringParam("NewBeaconType", beaconType).
AddBoolParam("NewMACAddressControlEnabled", macAddressControlEnabled).
AddStringParam("NewBasicEncryptionModes", basicEncryptionModes).
AddStringParam("NewBasicAuthenticationMode", basicAuthenticationMode).
Do()
if err != nil {
return tr064model.SetWlanConfigurationConfigResponse{}, err
}
bodyData := fbAction.Body.Data
result := tr064model.SetWlanConfigurationConfigResponse{}
err = xml.Unmarshal(bodyData, &result)
if err != nil {
return tr064model.SetWlanConfigurationConfigResponse{}, err
}
return result, nil
}