mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-03 21:05:06 -04:00
13 lines
276 B
Go
13 lines
276 B
Go
![]() |
package exportable
|
||
|
|
||
|
import "github.com/hkparker/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
|
||
|
}
|