Home | History | Annotate | Download | only in stack

Lines Matching defs:sipStack

94      * @param sipStack
98 SIPTransactionStack sipStack, int port) throws IOException {
99 super(ipAddress, port, "udp",sipStack);
101 this.sipStack = sipStack;
107 this.sock = sipStack.getNetworkLayer().createDatagramSocket(port,
110 sock.setReceiveBufferSize(sipStack.getReceiveUdpBufferSize());
111 sock.setSendBufferSize(sipStack.getSendUdpBufferSize());
117 if (sipStack.getThreadAuditor().isEnabled()) {
118 sock.setSoTimeout((int) sipStack.getThreadAuditor().getPingIntervalInMillisecs());
169 if (sipStack.threadPoolSize != -1) {
170 for (int i = 0; i < sipStack.threadPoolSize; i++) {
171 UDPMessageChannel channel = new UDPMessageChannel(sipStack,
179 ThreadAuditor.ThreadHandle threadHandle = sipStack.getThreadAuditor().addCurrentThread();
203 if ( sipStack.stackDoesCongestionControl ) {
205 if (sipStack.isLoggingEnabled()) {
206 sipStack.getStackLogger().logDebug("Dropping message -- queue length exceeded");
216 if (sipStack.isLoggingEnabled()) {
217 sipStack.getStackLogger().logDebug("Dropping message with probability " + (1.0 - threshold));
231 if (sipStack.threadPoolSize != -1) {
244 new UDPMessageChannel(sipStack, this, packet);
249 if (sipStack.isLoggingEnabled())
261 if (sipStack.isLoggingEnabled())
265 if (sipStack.isLoggingEnabled())
303 return sipStack;
312 targetHostPort.getPort(), sipStack, this);
317 return new UDPMessageChannel(host, port, sipStack, this);