fiche-golang icon indicating copy to clipboard operation
fiche-golang copied to clipboard

The client side isn't given a url

Open ChausseBenjamin opened this issue 3 years ago • 2 comments

When I run echo Hello | nc nc.mydomain.com 9999, the client remains hanging. I can see the main program printing where the file is stored though.

Is there something I have to change in the main.go code?

ChausseBenjamin avatar Jan 01 '21 21:01 ChausseBenjamin

Thanks for you point. I'll fix it until today.

imfht avatar Jan 02 '21 02:01 imfht

Hi @ChausseBenjamin I think it is caused by different netcat version. add -q 1 should works well. eg echo Hello | nc nc.mydomain.com 9999 -q1 Have a look at https://unix.stackexchange.com/a/332173 . I'm trying to find a way to fix it.

imfht avatar Jan 02 '21 15:01 imfht