8000 GitHub - andyollylarkin/ipiter: Golang IP subnet iterator library
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

andyollylarkin/ipiter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple golang package provided go 1.23 iterator for IP subnet

Current available iterator for IPv4

Example

func main {
	for ip := range SubnetV4Seq("192.168.10.10/24") {
		fmt.Println(ip.String())
	}
}

It will print ip addresses from 192.168.10.0 to 192.168.10.255

About

Golang IP subnet iterator library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0