Hi,
I am Damien from France and am currently looking for a server that can actually deals with Unix domain sockets (rather than network sockets). Even if QuickServer is a network server, i am interested in the way it handles client request, and wish i could benefit this.
There's some existing java implementation of Unix domain socket in java.
junixsocket implementation for instance is very interesting because it actually reuses the java Socket API, so that you got for instance a
AFUNIXServerSocket class that extends
java.net.ServerSocket.
I wish i can use QuickServer to make a server socket using this
AFUNIXServerSocket to be able to serve clients connecting through Unix domain sockets.
I've noticed that the main
QuickServer class has a
protected void makeServerSocket() method (non final, so one can override it) but it seems tha actual implementation refers to some private members (especially the
private ServerSocket server
member) which makes the class hardly extensible.
Do you see any good strategies I could use to achieve my goal ?
Thank you.