Remove spurious spaces from between req/resp struct members in generated code.
This commit is contained in:
		@@ -109,8 +109,7 @@ func (client *DeviceProtection1) SendSetupMessage(ProtocolType string, InMessage
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		ProtocolType string
 | 
			
		||||
 | 
			
		||||
		InMessage string
 | 
			
		||||
		InMessage    string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -196,10 +195,8 @@ func (client *DeviceProtection1) GetAssignedRoles() (RoleList string, err error)
 | 
			
		||||
func (client *DeviceProtection1) GetRolesForAction(DeviceUDN string, ServiceId string, ActionName string) (RoleList string, RestrictedRoleList string, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		DeviceUDN string
 | 
			
		||||
 | 
			
		||||
		ServiceId string
 | 
			
		||||
 | 
			
		||||
		DeviceUDN  string
 | 
			
		||||
		ServiceId  string
 | 
			
		||||
		ActionName string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -217,8 +214,7 @@ func (client *DeviceProtection1) GetRolesForAction(DeviceUDN string, ServiceId s
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		RoleList string
 | 
			
		||||
 | 
			
		||||
		RoleList           string
 | 
			
		||||
		RestrictedRoleList string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -243,8 +239,7 @@ func (client *DeviceProtection1) GetUserLoginChallenge(ProtocolType string, Name
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		ProtocolType string
 | 
			
		||||
 | 
			
		||||
		Name string
 | 
			
		||||
		Name         string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -258,8 +253,7 @@ func (client *DeviceProtection1) GetUserLoginChallenge(ProtocolType string, Name
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		Salt string
 | 
			
		||||
 | 
			
		||||
		Salt      string
 | 
			
		||||
		Challenge string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -283,10 +277,8 @@ func (client *DeviceProtection1) GetUserLoginChallenge(ProtocolType string, Name
 | 
			
		||||
func (client *DeviceProtection1) UserLogin(ProtocolType string, Challenge []byte, Authenticator []byte) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		ProtocolType string
 | 
			
		||||
 | 
			
		||||
		Challenge string
 | 
			
		||||
 | 
			
		||||
		ProtocolType  string
 | 
			
		||||
		Challenge     string
 | 
			
		||||
		Authenticator string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -424,12 +416,9 @@ func (client *DeviceProtection1) SetUserLoginPassword(ProtocolType string, Name
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		ProtocolType string
 | 
			
		||||
 | 
			
		||||
		Name string
 | 
			
		||||
 | 
			
		||||
		Stored string
 | 
			
		||||
 | 
			
		||||
		Salt string
 | 
			
		||||
		Name         string
 | 
			
		||||
		Stored       string
 | 
			
		||||
		Salt         string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -465,7 +454,6 @@ func (client *DeviceProtection1) AddRolesForIdentity(Identity string, RoleList s
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		Identity string
 | 
			
		||||
 | 
			
		||||
		RoleList string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -496,7 +484,6 @@ func (client *DeviceProtection1) RemoveRolesForIdentity(Identity string, RoleLis
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		Identity string
 | 
			
		||||
 | 
			
		||||
		RoleList string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -873,7 +860,6 @@ func (client *LANHostConfigManagement1) SetAddressRange(NewMinAddress string, Ne
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewMinAddress string
 | 
			
		||||
 | 
			
		||||
		NewMaxAddress string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -910,7 +896,6 @@ func (client *LANHostConfigManagement1) GetAddressRange() (NewMinAddress string,
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewMinAddress string
 | 
			
		||||
 | 
			
		||||
		NewMaxAddress string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -1275,8 +1260,7 @@ func (client *WANCableLinkConfig1) GetCableLinkConfigInfo() (NewCableLinkConfigS
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewCableLinkConfigState string
 | 
			
		||||
 | 
			
		||||
		NewLinkType string
 | 
			
		||||
		NewLinkType             string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -1665,13 +1649,10 @@ func (client *WANCommonInterfaceConfig1) GetCommonLinkProperties() (NewWANAccess
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewWANAccessType string
 | 
			
		||||
 | 
			
		||||
		NewLayer1UpstreamMaxBitRate string
 | 
			
		||||
 | 
			
		||||
		NewWANAccessType              string
 | 
			
		||||
		NewLayer1UpstreamMaxBitRate   string
 | 
			
		||||
		NewLayer1DownstreamMaxBitRate string
 | 
			
		||||
 | 
			
		||||
		NewPhysicalLinkStatus string
 | 
			
		||||
		NewPhysicalLinkStatus         string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -1872,7 +1853,6 @@ func (client *WANCommonInterfaceConfig1) GetActiveConnection(NewActiveConnection
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewActiveConnDeviceContainer string
 | 
			
		||||
 | 
			
		||||
		NewActiveConnectionServiceID string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -1992,8 +1972,7 @@ func (client *WANDSLLinkConfig1) GetDSLLinkInfo() (NewLinkType string, NewLinkSt
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewLinkType string
 | 
			
		||||
 | 
			
		||||
		NewLinkType   string
 | 
			
		||||
		NewLinkStatus string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -2411,8 +2390,7 @@ func (client *WANIPConnection1) GetConnectionTypeInfo() (NewConnectionType strin
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionType string
 | 
			
		||||
 | 
			
		||||
		NewConnectionType          string
 | 
			
		||||
		NewPossibleConnectionTypes string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -2589,11 +2567,9 @@ func (client *WANIPConnection1) GetStatusInfo() (NewConnectionStatus string, New
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionStatus string
 | 
			
		||||
 | 
			
		||||
		NewConnectionStatus    string
 | 
			
		||||
		NewLastConnectionError string
 | 
			
		||||
 | 
			
		||||
		NewUptime string
 | 
			
		||||
		NewUptime              string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -2704,8 +2680,7 @@ func (client *WANIPConnection1) GetNATRSIPStatus() (NewRSIPAvailable bool, NewNA
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRSIPAvailable string
 | 
			
		||||
 | 
			
		||||
		NewNATEnabled string
 | 
			
		||||
		NewNATEnabled    string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -2743,21 +2718,14 @@ func (client *WANIPConnection1) GetGenericPortMappingEntry(NewPortMappingIndex u
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -2803,11 +2771,9 @@ func (client *WANIPConnection1) GetGenericPortMappingEntry(NewPortMappingIndex u
 | 
			
		||||
func (client *WANIPConnection1) GetSpecificPortMappingEntry(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -2824,15 +2790,11 @@ func (client *WANIPConnection1) GetSpecificPortMappingEntry(NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -2869,21 +2831,14 @@ func (client *WANIPConnection1) GetSpecificPortMappingEntry(NewRemoteHost string
 | 
			
		||||
func (client *WANIPConnection1) AddPortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string, NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -2935,11 +2890,9 @@ func (client *WANIPConnection1) AddPortMapping(NewRemoteHost string, NewExternal
 | 
			
		||||
func (client *WANIPConnection1) DeletePortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3089,8 +3042,7 @@ func (client *WANIPConnection2) GetConnectionTypeInfo() (NewConnectionType strin
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionType string
 | 
			
		||||
 | 
			
		||||
		NewConnectionType          string
 | 
			
		||||
		NewPossibleConnectionTypes string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -3267,11 +3219,9 @@ func (client *WANIPConnection2) GetStatusInfo() (NewConnectionStatus string, New
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionStatus string
 | 
			
		||||
 | 
			
		||||
		NewConnectionStatus    string
 | 
			
		||||
		NewLastConnectionError string
 | 
			
		||||
 | 
			
		||||
		NewUptime string
 | 
			
		||||
		NewUptime              string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -3382,8 +3332,7 @@ func (client *WANIPConnection2) GetNATRSIPStatus() (NewRSIPAvailable bool, NewNA
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRSIPAvailable string
 | 
			
		||||
 | 
			
		||||
		NewNATEnabled string
 | 
			
		||||
		NewNATEnabled    string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -3421,21 +3370,14 @@ func (client *WANIPConnection2) GetGenericPortMappingEntry(NewPortMappingIndex u
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -3481,11 +3423,9 @@ func (client *WANIPConnection2) GetGenericPortMappingEntry(NewPortMappingIndex u
 | 
			
		||||
func (client *WANIPConnection2) GetSpecificPortMappingEntry(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3502,15 +3442,11 @@ func (client *WANIPConnection2) GetSpecificPortMappingEntry(NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -3547,21 +3483,14 @@ func (client *WANIPConnection2) GetSpecificPortMappingEntry(NewRemoteHost string
 | 
			
		||||
func (client *WANIPConnection2) AddPortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string, NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3613,11 +3542,9 @@ func (client *WANIPConnection2) AddPortMapping(NewRemoteHost string, NewExternal
 | 
			
		||||
func (client *WANIPConnection2) DeletePortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3655,12 +3582,9 @@ func (client *WANIPConnection2) DeletePortMappingRange(NewStartPort uint16, NewE
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewStartPort string
 | 
			
		||||
 | 
			
		||||
		NewEndPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewManage string
 | 
			
		||||
		NewEndPort   string
 | 
			
		||||
		NewProtocol  string
 | 
			
		||||
		NewManage    string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3726,14 +3650,10 @@ func (client *WANIPConnection2) GetExternalIPAddress() (NewExternalIPAddress str
 | 
			
		||||
func (client *WANIPConnection2) GetListOfPortMappings(NewStartPort uint16, NewEndPort uint16, NewProtocol string, NewManage bool, NewNumberOfPorts uint16) (NewPortListing string, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewStartPort string
 | 
			
		||||
 | 
			
		||||
		NewEndPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewManage string
 | 
			
		||||
 | 
			
		||||
		NewStartPort     string
 | 
			
		||||
		NewEndPort       string
 | 
			
		||||
		NewProtocol      string
 | 
			
		||||
		NewManage        string
 | 
			
		||||
		NewNumberOfPorts string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -3782,21 +3702,14 @@ func (client *WANIPConnection2) GetListOfPortMappings(NewStartPort uint16, NewEn
 | 
			
		||||
func (client *WANIPConnection2) AddAnyPortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string, NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32) (NewReservedPort uint16, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3914,8 +3827,7 @@ func (client *WANIPv6FirewallControl1) GetFirewallStatus() (FirewallEnabled bool
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		FirewallEnabled string
 | 
			
		||||
 | 
			
		||||
		FirewallEnabled       string
 | 
			
		||||
		InboundPinholeAllowed string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -3939,15 +3851,11 @@ func (client *WANIPv6FirewallControl1) GetFirewallStatus() (FirewallEnabled bool
 | 
			
		||||
func (client *WANIPv6FirewallControl1) GetOutboundPinholeTimeout(RemoteHost string, RemotePort uint16, InternalClient string, InternalPort uint16, Protocol uint16) (OutboundPinholeTimeout uint32, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		RemoteHost string
 | 
			
		||||
 | 
			
		||||
		RemotePort string
 | 
			
		||||
 | 
			
		||||
		RemoteHost     string
 | 
			
		||||
		RemotePort     string
 | 
			
		||||
		InternalClient string
 | 
			
		||||
 | 
			
		||||
		InternalPort string
 | 
			
		||||
 | 
			
		||||
		Protocol string
 | 
			
		||||
		InternalPort   string
 | 
			
		||||
		Protocol       string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -3995,17 +3903,12 @@ func (client *WANIPv6FirewallControl1) GetOutboundPinholeTimeout(RemoteHost stri
 | 
			
		||||
func (client *WANIPv6FirewallControl1) AddPinhole(RemoteHost string, RemotePort uint16, InternalClient string, InternalPort uint16, Protocol uint16, LeaseTime uint32) (UniqueID uint16, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		RemoteHost string
 | 
			
		||||
 | 
			
		||||
		RemotePort string
 | 
			
		||||
 | 
			
		||||
		RemoteHost     string
 | 
			
		||||
		RemotePort     string
 | 
			
		||||
		InternalClient string
 | 
			
		||||
 | 
			
		||||
		InternalPort string
 | 
			
		||||
 | 
			
		||||
		Protocol string
 | 
			
		||||
 | 
			
		||||
		LeaseTime string
 | 
			
		||||
		InternalPort   string
 | 
			
		||||
		Protocol       string
 | 
			
		||||
		LeaseTime      string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -4056,8 +3959,7 @@ func (client *WANIPv6FirewallControl1) AddPinhole(RemoteHost string, RemotePort
 | 
			
		||||
func (client *WANIPv6FirewallControl1) UpdatePinhole(UniqueID uint16, NewLeaseTime uint32) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		UniqueID string
 | 
			
		||||
 | 
			
		||||
		UniqueID     string
 | 
			
		||||
		NewLeaseTime string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -4241,10 +4143,8 @@ func (client *WANPOTSLinkConfig1) SetISPInfo(NewISPPhoneNumber string, NewISPInf
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewISPPhoneNumber string
 | 
			
		||||
 | 
			
		||||
		NewISPInfo string
 | 
			
		||||
 | 
			
		||||
		NewLinkType string
 | 
			
		||||
		NewISPInfo        string
 | 
			
		||||
		NewLinkType       string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -4276,8 +4176,7 @@ func (client *WANPOTSLinkConfig1) SetISPInfo(NewISPPhoneNumber string, NewISPInf
 | 
			
		||||
func (client *WANPOTSLinkConfig1) SetCallRetryInfo(NewNumberOfRetries uint32, NewDelayBetweenRetries uint32) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewNumberOfRetries string
 | 
			
		||||
 | 
			
		||||
		NewNumberOfRetries     string
 | 
			
		||||
		NewDelayBetweenRetries string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -4318,10 +4217,8 @@ func (client *WANPOTSLinkConfig1) GetISPInfo() (NewISPPhoneNumber string, NewISP
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewISPPhoneNumber string
 | 
			
		||||
 | 
			
		||||
		NewISPInfo string
 | 
			
		||||
 | 
			
		||||
		NewLinkType string
 | 
			
		||||
		NewISPInfo        string
 | 
			
		||||
		NewLinkType       string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -4353,8 +4250,7 @@ func (client *WANPOTSLinkConfig1) GetCallRetryInfo() (NewNumberOfRetries uint32,
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewNumberOfRetries string
 | 
			
		||||
 | 
			
		||||
		NewNumberOfRetries     string
 | 
			
		||||
		NewDelayBetweenRetries string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -4604,8 +4500,7 @@ func (client *WANPPPConnection1) GetConnectionTypeInfo() (NewConnectionType stri
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionType string
 | 
			
		||||
 | 
			
		||||
		NewConnectionType          string
 | 
			
		||||
		NewPossibleConnectionTypes string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -4630,7 +4525,6 @@ func (client *WANPPPConnection1) ConfigureConnection(NewUserName string, NewPass
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewUserName string
 | 
			
		||||
 | 
			
		||||
		NewPassword string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
@@ -4813,11 +4707,9 @@ func (client *WANPPPConnection1) GetStatusInfo() (NewConnectionStatus string, Ne
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewConnectionStatus string
 | 
			
		||||
 | 
			
		||||
		NewConnectionStatus    string
 | 
			
		||||
		NewLastConnectionError string
 | 
			
		||||
 | 
			
		||||
		NewUptime string
 | 
			
		||||
		NewUptime              string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -4849,8 +4741,7 @@ func (client *WANPPPConnection1) GetLinkLayerMaxBitRates() (NewUpstreamMaxBitRat
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewUpstreamMaxBitRate string
 | 
			
		||||
 | 
			
		||||
		NewUpstreamMaxBitRate   string
 | 
			
		||||
		NewDownstreamMaxBitRate string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
@@ -5089,8 +4980,7 @@ func (client *WANPPPConnection1) GetNATRSIPStatus() (NewRSIPAvailable bool, NewN
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRSIPAvailable string
 | 
			
		||||
 | 
			
		||||
		NewNATEnabled string
 | 
			
		||||
		NewNATEnabled    string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -5128,21 +5018,14 @@ func (client *WANPPPConnection1) GetGenericPortMappingEntry(NewPortMappingIndex
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -5188,11 +5071,9 @@ func (client *WANPPPConnection1) GetGenericPortMappingEntry(NewPortMappingIndex
 | 
			
		||||
func (client *WANPPPConnection1) GetSpecificPortMappingEntry(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32, err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -5209,15 +5090,11 @@ func (client *WANPPPConnection1) GetSpecificPortMappingEntry(NewRemoteHost strin
 | 
			
		||||
 | 
			
		||||
	// Response structure.
 | 
			
		||||
	response := &struct {
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
 | 
			
		||||
	// Perform the SOAP call.
 | 
			
		||||
@@ -5254,21 +5131,14 @@ func (client *WANPPPConnection1) GetSpecificPortMappingEntry(NewRemoteHost strin
 | 
			
		||||
func (client *WANPPPConnection1) AddPortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string, NewInternalPort uint16, NewInternalClient string, NewEnabled bool, NewPortMappingDescription string, NewLeaseDuration uint32) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
 | 
			
		||||
		NewInternalPort string
 | 
			
		||||
 | 
			
		||||
		NewInternalClient string
 | 
			
		||||
 | 
			
		||||
		NewEnabled string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost             string
 | 
			
		||||
		NewExternalPort           string
 | 
			
		||||
		NewProtocol               string
 | 
			
		||||
		NewInternalPort           string
 | 
			
		||||
		NewInternalClient         string
 | 
			
		||||
		NewEnabled                string
 | 
			
		||||
		NewPortMappingDescription string
 | 
			
		||||
 | 
			
		||||
		NewLeaseDuration string
 | 
			
		||||
		NewLeaseDuration          string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
@@ -5320,11 +5190,9 @@ func (client *WANPPPConnection1) AddPortMapping(NewRemoteHost string, NewExterna
 | 
			
		||||
func (client *WANPPPConnection1) DeletePortMapping(NewRemoteHost string, NewExternalPort uint16, NewProtocol string) (err error) {
 | 
			
		||||
	// Request structure.
 | 
			
		||||
	request := &struct {
 | 
			
		||||
		NewRemoteHost string
 | 
			
		||||
 | 
			
		||||
		NewRemoteHost   string
 | 
			
		||||
		NewExternalPort string
 | 
			
		||||
 | 
			
		||||
		NewProtocol string
 | 
			
		||||
		NewProtocol     string
 | 
			
		||||
	}{}
 | 
			
		||||
	// BEGIN Marshal arguments into request.
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user