Closed jaeseung-bae closed 1 year ago
Merging #707 (486c71a) into main (449aa31) will increase coverage by
0.04%
. Report is 6 commits behind head on main. The diff coverage is78.57%
.
Is there a valid address checking?
There is no validation logic for valid address.
Is it possible using url not ip? if then, are there any security issues?
For now, it's not possible because when accepting a connection what I can receive is (net.Conn, error)
which has only net.Addr
for local and remote. There's no way to find out url.
Is there a valid address checking?
There is no validation logic for valid address.
Is it possible using url not ip? if then, are there any security issues?
For now, it's not possible because when accepting a connection what I can receive is
(net.Conn, error)
which has onlynet.Addr
for local and remote. There's no way to find out url.
Then, what happen if I write 127.0.1
?
Then, what happen if I write 127.0.1?
None of the connections will be accepted because no address match to 127.0.1
Description