2018-07-23 19:01:05 +00:00
|
|
|
package io.github.lonamiwebs.overgram;
|
|
|
|
|
2018-07-23 19:59:28 +00:00
|
|
|
import io.github.lonamiwebs.overgram.network.connection.Connection;
|
|
|
|
import io.github.lonamiwebs.overgram.network.connection.TcpFull;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2018-07-23 19:01:05 +00:00
|
|
|
public class Overgram {
|
2018-07-23 19:59:28 +00:00
|
|
|
public static void main(final String... args) throws IOException {
|
|
|
|
final Connection connection = new TcpFull();
|
|
|
|
connection.connect("149.154.167.91", 443);
|
|
|
|
connection.disconnect();
|
2018-07-23 19:01:05 +00:00
|
|
|
}
|
|
|
|
}
|