Home | History | Annotate | Download | only in stack

Lines Matching refs:sipStack

75      * @param sipStack SIPStack structure.
78 protected TCPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) {
79 super(ipAddress, port, "tcp",sipStack);
81 this.sipStack = sipStack;
95 this.sock = sipStack.getNetworkLayer().createServerSocket(getPort(), 0, getIpAddress());
115 // sipStack.maxConnections == -1 means we are
119 while (sipStack.maxConnections != -1
120 && this.nConnections >= sipStack.maxConnections) {
134 if (sipStack.isLoggingEnabled()) {
140 incomingTcpMessageChannels.add(new TCPMessageChannel(newsock, sipStack, this));
145 if (sipStack.isLoggingEnabled())
169 return sipStack;
202 if (sipStack.isLoggingEnabled()) {
203 sipStack.getStackLogger().logDebug(Thread.currentThread() + " removing " + key);
221 targetHostPort.getPort(), sipStack, this);
224 if (sipStack.isLoggingEnabled()) {
225 sipStack.getStackLogger().logDebug("key " + key);
226 sipStack.getStackLogger().logDebug("Creating " + retval);
236 if (sipStack.isLoggingEnabled())
237 sipStack.getStackLogger().logDebug("Closing " + key);
240 if (sipStack.isLoggingEnabled())
241 sipStack.getStackLogger().logDebug("Caching " + key);
253 TCPMessageChannel retval = new TCPMessageChannel(host, port, sipStack, this);
256 if (sipStack.isLoggingEnabled()) {
257 sipStack.getStackLogger().logDebug("key " + key);
258 sipStack.getStackLogger().logDebug("Creating " + retval);