proxy progress
This commit is contained in:
parent
4b76484798
commit
0e43677693
|
@ -0,0 +1,4 @@
|
|||
package com.rusefi.server;
|
||||
|
||||
public class Backend {
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
package com.rusefi;
|
||||
|
||||
import java.net.Socket;
|
||||
|
||||
public class ClientConnectionState {
|
||||
public ClientConnectionState(Socket clientSocket) {
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.rusefi;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class ServerTest {
|
||||
@Test
|
||||
public void testSessionTimeout() {
|
||||
int serverPort = 7000;
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue