-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
Description
This is a version of the SSLAcceptor class used by TJWS to handle a few different things. It would be implemented by inheriting from SSLAcceptor and implementing LiteAcceptor per #27.
But there are a few other things I would also like it to do. Specifically:
- So SSLAcceptor.ARG_PORT and Server.ARG_PORT aren't the same. This actually makes sense because there is an acceptor for TJWS that simultaneously supports HTTPS and HTTP. But LiteSSLAcceptor would only support HTTP over SSL. So I want to set the logic so that if Server.ARG_PORT is set but SSLAcceptor.ARG_PORT isn't then we will use Server.ARG_PORT.
- The same situation exists with SSLAcceptor.IFADDRESS and Serve.ARG_BINDADDRESS. I want to use the same solution.