koinos / koinos-jsonrpc

The jsonrpc microservice translates and routes jsonrpc requests to other Koinos microservices.
MIT License
2 stars 3 forks source link

Support IPv6 #5

Open mvandeberg opened 3 years ago

mvandeberg commented 3 years ago

Add support IPv6 support

naftalimurgor commented 3 years ago

@mvandeberg Hey, I'd like to work on this issue. Any insights on how to get started? Thanks

koinos-ci commented 1 year ago

This issue is stale because it has been open for 30 days with no activity.

sgerbino commented 1 year ago

@naftalimurgor

This feature may or may not already be supported by the library imported here: https://github.com/koinos/koinos-jsonrpc/blob/master/cmd/koinos-jsonrpc/main.go#L22

The first step would be to pass in a valid IPv6 address as a listen parameter to see if it works. We pass the argument in to the library here: https://github.com/koinos/koinos-jsonrpc/blob/master/cmd/koinos-jsonrpc/main.go#L136

If it doesn't "just work," then we should investigate the requirements of the library and go from there.

naftalimurgor commented 1 year ago

@sgerbino Makes total sense. Will do the same and see if it works then proceed from there.

naftalimurgor commented 1 year ago

@sgerbino Makes total sense. Will do the same and see if it works then proceed from there.