-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathset_subnet_mask.go
31 lines (28 loc) · 986 Bytes
/
set_subnet_mask.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"
)
// SetSubnetMask AUTO-GENERATED (do not edit) code from [lanhostconfigmgmSCPD],
// based on SOAP action 'SetSubnetMask', Fritz!Box-System-Version 164.08.00
//
// [lanhostconfigmgmSCPD]: http://fritz.box:49000/lanhostconfigmgmSCPD.xml
func SetSubnetMask(session *soap.SoapSession, subnetMask string) (tr064model.SetSubnetMaskResponse, error) {
fbAction, err := soap.NewSoapRequest(session).
ReqPath("/upnp/control/lanhostconfigmgm").
Uri("urn:dslforum-org:service:LANHostConfigManagement:1").
Action("SetSubnetMask").
AddStringParam("NewSubnetMask", subnetMask).
Do()
if err != nil {
return tr064model.SetSubnetMaskResponse{}, err
}
bodyData := fbAction.Body.Data
result := tr064model.SetSubnetMaskResponse{}
err = xml.Unmarshal(bodyData, &result)
if err != nil {
return tr064model.SetSubnetMaskResponse{}, err
}
return result, nil
}