-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwlan1_set_ssid.go
31 lines (28 loc) · 901 Bytes
/
wlan1_set_ssid.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
package lan
import (
"encoding/xml"
"github.com/nitram509/gofritz/pkg/soap"
"github.com/nitram509/gofritz/pkg/tr064model"
)
// Wlan1SetSSID AUTO-GENERATED (do not edit) code from [wlanconfigSCPD],
// based on SOAP action 'SetSSID', Fritz!Box-System-Version 164.08.00
//
// [wlanconfigSCPD]: http://fritz.box:49000/wlanconfigSCPD.xml
func Wlan1SetSSID(session *soap.SoapSession, ssid string) (tr064model.SetSSIDResponse, error) {
fbAction, err := soap.NewSoapRequest(session).
ReqPath("/upnp/control/wlanconfig1").
Uri("urn:dslforum-org:service:WLANConfiguration:1").
Action("SetSSID").
AddStringParam("NewSSID", ssid).
Do()
if err != nil {
return tr064model.SetSSIDResponse{}, err
}
bodyData := fbAction.Body.Data
result := tr064model.SetSSIDResponse{}
err = xml.Unmarshal(bodyData, &result)
if err != nil {
return tr064model.SetSSIDResponse{}, err
}
return result, nil
}