proxy progress

This commit is contained in:
rusefi 2020-07-10 23:22:56 -04:00
parent afa2411287
commit 27343194fc
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package com.rusefi.server;
public class Backend {
}

View File

@ -0,0 +1,8 @@
package com.rusefi;
import java.net.Socket;
public class ClientConnectionState {
public ClientConnectionState(Socket clientSocket) {
}
}

View File

@ -0,0 +1,12 @@
package com.rusefi;
import org.junit.Test;
public class ServerTest {
@Test
public void testSessionTimeout() {
int serverPort = 7000;
}
}