123456789101112 |
- public class Application {
-
- public static void main(String [] args)
- {
- String vHostName = "localhost";
- int vWebPagePort = 8080;
- int vWebSocketPort = 42069;
- int vTcpSocketPort = 6868;
- CuisineHTTPServer vServer = new CuisineHTTPServer();
- vServer.startServer(vHostName,vWebPagePort,vWebSocketPort,vTcpSocketPort);
- }
- }
|