sessionListener.setSessionStateListener(new SessionStateListenerImpl());
sessionListener.setPduProcessorDegree(processorDegree);
new TrafficWatcherThread().start();
logger.info("Listening on port {}", port);
while (true) {
SMPPServerSession serverSession = sessionListener.accept();
logger.info("Accepting connection for session {}", serverSession.getSessionId());
serverSession.setMessageReceiverListener(this);
waitBindExecService.execute(new WaitBindTask(serverSession));
}
} catch (IOException e) {