
es.tid.vntm.client.VNTMClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of network-emulator Show documentation
Show all versions of network-emulator Show documentation
Emulator of GMPLS-controlled transport Network
The newest version!
package es.tid.vntm.client;
import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
import es.tid.pce.pcepsession.PCEPSessionsInformation;
public class VNTMClient
{
public static void main(String[] args)
{
try {
Socket s = new Socket("localhost", 4189);
VNTMClientSession vntmsession = new VNTMClientSession( s,new PCEPSessionsInformation());
vntmsession.start();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy