Matthew DeVore
Matthew DeVore
@jghub Thank you for the tip. `/bin/ksh` is working fine for me now. I am new to ksh and I assumed the latest version would be the best. Reading some...
> I'm using the FreeBSD ksh93-devel port, updated a day prior to the rollback (8cf92b2). I have no > problems with "b". You might want to try the latest ksh2020...
I think the owner of this repo is not interested in it anymore. I haven't seen any activity from joewalnes for a few months. I doubt any of the forks...
Above, when I said "the directory you are in when you start the script" I meant "the directory your shell is in when you start websocketd".
> --staticdir=SOME_PATH : allows websocketd to serve as a static file any file that is in the targeted directory targeted with the option --staticdir=SOME_PATH > > Is it OK for...
`--passenv` does not work for CGI scripts (for websocket processes it works as expected). This appears to be unintentional, as the code to make it work is written except only...
According to reference [0], closing cleanly requires that one end send the bytes 0xff, 0x00 In python3, I guess that means: sys.stdout.buffer.write(bytes([0xff, 0x00])) I'm not sure off the top of...
I looked a little more closely. The gorilla/websocket library that websocketd uses allows sending a CloseMessage and other control messages, but websocketd doesn't expose an API to use that. If...
This problem is mentioned in the version of rpc/xdr.h that is bundled with Xcode - available here: https://opensource.apple.com/source/Libinfo/Libinfo-517.30.1/rpc.subproj/xdr.h According to the below, casting a 2-arg function ptr to a 3-arg...