Skip to content

Commit

Permalink
Pass QOS always for WAN networks
Browse files Browse the repository at this point in the history
  • Loading branch information
paultyng committed Oct 23, 2022
1 parent e7f16ff commit f8c2528
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions unifi/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,30 @@ package unifi

import (
"context"
"encoding/json"
"fmt"
)

func (dst *Network) MarshalJSON() ([]byte, error) {
type Alias Network
aux := &struct {
*Alias

WANEgressQOS *emptyStringInt `json:"wan_egress_qos,omitempty"`
}{
Alias: (*Alias)(dst),
}

if dst.Purpose == "wan" {
// only send QOS when this is a WAN network
v := emptyStringInt(dst.WANEgressQOS)
aux.WANEgressQOS = &v
}

b, err := json.Marshal(aux)
return b, err
}

func (c *Client) DeleteNetwork(ctx context.Context, site, id, name string) error {
err := c.do(ctx, "DELETE", fmt.Sprintf("s/%s/rest/networkconf/%s", site, id), struct {
Name string `json:"name"`
Expand Down

0 comments on commit f8c2528

Please sign in to comment.