Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Feature search in section by CIDR" #7

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions controllers/subnets/subnets.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,6 @@ func (c *Controller) GetSubnetsByCIDR(cidr string) (out []Subnet, err error) {
return
}

func (c *Controller) GetSubnetsByCIDRAndSection(cidr string, section_id int) (out []Subnet, err error) {
err = c.SendRequest("GET", fmt.Sprintf("/subnets/cidr/%s/?filter_by=sectionId\\&filter_value=%d", cidr, section_id), &struct{}{}, &out)
return
}

// GetFirstFreeSubnet GETs the first free child subnet inside subnet with specified mask
func (c *Controller) GetFirstFreeSubnet(id int, mask int) (message string, err error) {
err = c.SendRequest("GET", fmt.Sprintf("/subnets/%d/first_subnet/%d/", id, mask), &struct{}{}, &message)
Expand Down