mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-06-16 13:54:49 -04:00
13 lines
274 B
Go
13 lines
274 B
Go
package exportable
|
|
|
|
import "github.com/go-i2p/go-i2p/lib/common"
|
|
|
|
func Fuzz(data []byte) int {
|
|
router_address, _, _ := common.ReadRouterAddress(data)
|
|
router_address.Cost()
|
|
router_address.Expiration()
|
|
router_address.Options()
|
|
router_address.TransportStyle()
|
|
return 0
|
|
}
|