All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.vntm.client.VNTMClient Maven / Gradle / Ivy

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