libp2p / go-maddr-filter

[DEPRECATED] A library for filtering multiaddrs; please use https://github.com/multiformats/go-multiaddr

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚠️ DEPRECATED: Filters have been migrated to multiformats/go-multiaddr.

go-maddr-filter

Coverage Status Travis CI Discourse posts

A library to perform filtering of multiaddrs.

Table of Contents

Install

make install

Examples

// make a new filterset
f := NewFilters()

// filter out addresses on the 192.168 subnet
_, ipnet, _ := net.ParseCIDR("192.168.0.0/16")
f.AddFilter(ipnet, ActionDeny)

// check if an address is blocked
lanaddr, _ := ma.NewMultiaddr("/ip4/192.168.0.17/tcp/4050")
fmt.Println(f.AddrBlocked(lanaddr))

// the default for a filter is accept, but we can change that
f.RemoveLiteral(ipnet)
f.DefaultAction = ActionDeny
fmt.Println(f.AddrBlocked(lanaddr))

// we can now allow the local LAN, denying everything else
f.AddFilter(ipnet, ActionAccept)
fmt.Println(f.AddrBlocked(lanaddr))

Contribute

PRs are welcome!

Small note: If editing the Readme, please conform to the standard-readme specification.

License

MIT © Jeromy Johnson


The last gx published version of this module was: 1.1.13: QmT6C5ebDy92zyRzdmSNyda5q7zkNXy68X47RDJiHpvaxd

About

[DEPRECATED] A library for filtering multiaddrs; please use https://github.com/multiformats/go-multiaddr

License:MIT License


Languages

Language:Go 100.0%