Searched refs:sipStack (Results 1 - 22 of 22) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/
H A DEventScanner.java57 private SipStackImpl sipStack; field in class:EventScanner
72 this.sipStack = sipStackImpl;
81 if (sipStack.isLoggingEnabled())
82 sipStack.getStackLogger().logDebug("addEvent " + eventWrapper);
129 if (sipStack.isLoggingEnabled())
130 sipStack.getStackLogger().logDebug(
138 sipListener = sipStack.getSipListener();
148 if (sipStack.isLoggingEnabled()) {
149 sipStack.getStackLogger().logDebug(
168 SIPServerTransaction tx = (SIPServerTransaction) sipStack
[all...]
H A DDialogFilter.java95 private SipStackImpl sipStack; field in class:DialogFilter
97 public DialogFilter(SipStackImpl sipStack) { argument
98 this.sipStack = sipStack;
120 sipStack.addTransactionPendingAck(transaction);
125 sipStack.getStackLogger().logError("Problem sending error response", ex);
127 sipStack.removeTransaction(transaction);
150 sipStack.addTransactionPendingAck(transaction);
155 sipStack.getStackLogger().logError("Problem sending error response", ex);
157 sipStack
[all...]
H A DNistSipMessageFactoryImpl.java53 private SipStackImpl sipStack; field in class:NistSipMessageFactoryImpl
83 if (sipStack.isLoggingEnabled())
84 sipStack.getStackLogger().logDebug(
107 if (sipStack.isLoggingEnabled())
108 sipStack.getStackLogger().logDebug(
117 if (sipStack.isLoggingEnabled())
118 sipStack.getStackLogger().logDebug(
124 if (sipStack.isLoggingEnabled())
125 sipStack.getStackLogger().logDebug(
133 sipStack);
[all...]
H A DSipProviderImpl.java99 protected SipStackImpl sipStack; field in class:SipProviderImpl
136 if (sipStack.isLoggingEnabled())
137 sipStack.getStackLogger().logDebug("Exiting provider");
169 if (sipStack.isLoggingEnabled()) {
170 sipStack.getStackLogger().logDebug(
177 if ( sipStack.isLoggingEnabled()) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
180 if (sipStack.isLoggingEnabled() ) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
182 sipStack
197 SipProviderImpl(SipStackImpl sipStack) argument
[all...]
H A DListeningPointImpl.java79 protected SipStackImpl sipStack; field in class:ListeningPointImpl
126 * @param sipStack Our sip stack
129 SipStack sipStack,
132 this.sipStack = (SipStackImpl) sipStack;
146 new ListeningPointImpl(this.sipStack, this.port, null);
147 lip.sipStack = this.sipStack;
240 InternalErrorHandler.handleException("Unexpected exception",sipStack.getStackLogger());
128 ListeningPointImpl( SipStack sipStack, int port, String transport) argument
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DUDPMessageProcessor.java94 * @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
97 UDPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) argument
[all...]
H A DTCPMessageProcessor.java75 * @param sipStack SIPStack structure.
78 protected TCPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { argument
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
[all...]
H A DTCPMessageChannel.java43 * Ahmet Uyar <auyar@csit.fsu.edu>sent in a bug report for TCP operation of the JAIN sipStack.
52 * The SIP sipStack starts this from the main SIPStack class for each connection that it accepts.
83 protected SIPTransactionStack sipStack; field in class:TCPMessageChannel
102 protected TCPMessageChannel(SIPTransactionStack sipStack) { argument
103 this.sipStack = sipStack;
109 * All the processing of the message is done here with the sipStack being freed up to handle
116 * @param sipStack Ptr to SIP Stack
119 protected TCPMessageChannel(Socket sock, SIPTransactionStack sipStack, argument
122 if (sipStack
154 TCPMessageChannel(InetAddress inetAddr, int port, SIPTransactionStack sipStack, TCPMessageProcessor messageProcessor) argument
[all...]
H A DTLSMessageChannel.java30 * JAIN sipStack. Niklas Uhrberg suggested that a mechanism be added to
58 * This is sipStack for TLS connections. This abstracts a stream of parsed messages. The SIP
59 * sipStack starts this from the main SIPStack class for each connection that it accepts. It
106 private SIPTransactionStack sipStack; field in class:TLSMessageChannel
112 * All the processing of the message is done here with the sipStack being freed up to handle
119 * @param sipStack Ptr to SIP Stack
124 protected TLSMessageChannel(Socket sock, SIPTransactionStack sipStack, argument
126 if (sipStack.isLoggingEnabled()) {
127 sipStack.getStackLogger().logDebug("creating new TLSMessageChannel (incoming)");
128 sipStack
169 TLSMessageChannel(InetAddress inetAddr, int port, SIPTransactionStack sipStack, TLSMessageProcessor messageProcessor) argument
[all...]
H A DUDPMessageChannel.java102 protected SIPTransactionStack sipStack; field in class:UDPMessageChannel
175 this.sipStack = stack;
193 * is the SIP sipStack.
204 this.sipStack = stack;
223 * @param sipStack
227 SIPTransactionStack sipStack, UDPMessageProcessor messageProcessor) {
234 this.sipStack = sipStack;
235 if (sipStack.isLoggingEnabled()) {
236 this.sipStack
226 UDPMessageChannel(InetAddress targetAddr, int port, SIPTransactionStack sipStack, UDPMessageProcessor messageProcessor) argument
[all...]
H A DTLSMessageProcessor.java85 * @param sipStack SIPStack structure.
88 protected TLSMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { argument
89 super(ipAddress, port, "tls",sipStack);
90 this.sipStack = sipStack;
106 this.sock = sipStack.getNetworkLayer().createSSLServerSocket(this.getPort(), 0,
111 String []enabledCiphers = ((SipStackImpl)sipStack).getEnabledCipherSuites();
129 // sipStack.maxConnections == -1 means we are
133 while (sipStack.maxConnections != -1
134 && this.nConnections >= sipStack
[all...]
H A DIOHandler.java64 private SipStackImpl sipStack; field in class:IOHandler
80 protected IOHandler(SIPTransactionStack sipStack) { argument
81 this.sipStack = (SipStackImpl) sipStack;
140 clientSock = sipStack.getNetworkLayer().createSocket(dst, dstPort, localAddress,
166 if (sipStack.isLoggingEnabled()) {
167 sipStack.getStackLogger().logDebug(
171 if (sipStack.isLoggingEnabled() && sipStack.isLogStackTraceOnMessageSend()) {
172 sipStack
[all...]
H A DSIPDialog.java174 private transient SIPTransactionStack sipStack; field in class:SIPDialog
296 sipStack.getStackLogger().logError("unexpected error", e);
313 if (sipStack.isLoggingEnabled())
314 sipStack.getStackLogger().logError(
352 if (sipStack.isLoggingEnabled())
353 sipStack.getStackLogger().logDebug("Interrupted sleep");
359 if (sipStack.isLoggingEnabled())
360 sipStack.getStackLogger().logDebug("re-INVITE successfully sent");
362 sipStack.getStackLogger().logError("Error sending re-INVITE", ex);
381 sipStack
1038 setStack(SIPTransactionStack sipStack) argument
[all...]
H A DDefaultRouter.java101 private SipStackImpl sipStack; field in class:DefaultRouter
112 public DefaultRouter(SipStack sipStack, String defaultRoute) { argument
113 this.sipStack = (SipStackImpl) sipStack;
116 this.defaultRoute = (Hop) this.sipStack.getAddressResolver()
120 ((SIPTransactionStack) sipStack)
203 if (sipStack.isLoggingEnabled())
204 sipStack.getStackLogger()
209 if (sipStack.isLoggingEnabled())
210 sipStack
[all...]
H A DSIPServerTransaction.java305 SIPTransactionStack sipStack = serverTransaction.getSIPStack();
306 sipStack.removePendingTransaction(serverTransaction);
307 sipStack.removeTransaction(serverTransaction);
311 sipStack.getStackLogger().logError("unexpected exception", ex);
324 if (sipStack.isLoggingEnabled())
325 sipStack.getStackLogger().logDebug("scheduled timer for " + SIPServerTransaction.this);
335 if (sipStack.isLoggingEnabled())
336 sipStack.getStackLogger().logDebug(" sending Trying current state = "
341 if (sipStack.isLoggingEnabled())
342 sipStack
500 SIPServerTransaction(SIPTransactionStack sipStack, MessageChannel newChannelToUse) argument
[all...]
H A DSIPTransaction.java184 protected transient SIPTransactionStack sipStack; field in class:SIPTransaction
277 if (sipStack.isLoggingEnabled()) {
278 sipStack.getStackLogger().logDebug("LingerTimer : "
287 SIPTransactionStack sipStack = transaction.getSIPStack();
289 if (sipStack.isLoggingEnabled()) {
290 sipStack.getStackLogger().logDebug("LingerTimer: run() : "
295 sipStack.removeTransaction(transaction);
300 if (sipStack.isLoggingEnabled())
301 sipStack.getStackLogger().logDebug("removing" + transaction);
302 sipStack
[all...]
H A DSIPClientTransaction.java218 SIPTransactionStack sipStack;
220 sipStack = clientTransaction.sipStack;
225 if (sipStack.isLoggingEnabled()) {
226 sipStack.getStackLogger().logDebug(
231 sipStack.removeTransaction(clientTransaction);
237 if (!sipStack.isAlive())
245 if ((!sipStack.cacheClientConnections) && clientTransaction.isReliable()) {
252 sipStack.getTimer().schedule(myTimer,
260 if (sipStack
[all...]
H A DServerLog.java88 private SIPTransactionStack sipStack; field in class:ServerLog
221 if (sipStack.isLoggingEnabled()) {
261 if (sipStack.isLoggingEnabled()) {
316 if (sipStack.isLoggingEnabled()) {
326 LogRecord log = this.sipStack.logRecordFactory.createLogRecord(message, from, to, time,
449 public void setSipStack(SipStack sipStack) { argument
450 if(sipStack instanceof SIPTransactionStack) {
451 this.sipStack = (SIPTransactionStack)sipStack;
452 this.stackLogger = this.sipStack
[all...]
H A DMessageProcessor.java100 protected SIPTransactionStack sipStack; field in class:MessageProcessor
130 this.sipStack = transactionStack;
/external/nist-sip/java/javax/sip/
H A DSipFactory.java46 SipStack sipStack = mNameSipStackMap.get(name);
47 if (sipStack == null) {
51 sipStack = Class.forName(implClassName)
59 mNameSipStackMap.put(name, sipStack);
61 return sipStack;
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelperImpl.java80 private SipStackImpl sipStack; field in class:AuthenticationHelperImpl
88 * @param sipStack -- our stack.
92 public AuthenticationHelperImpl(SipStackImpl sipStack, AccountManager accountManager, argument
96 this.sipStack = sipStack;
98 this.cachedCredentials = new CredentialsCache(((SIPTransactionStack) sipStack).getTimer());
105 * @param sipStack -- our stack.
109 public AuthenticationHelperImpl(SipStackImpl sipStack, SecureAccountManager accountManager, argument
113 this.sipStack = sipStack;
[all...]
/external/nist-sip/java/gov/nist/core/
H A DServerLogger.java46 public void setSipStack(SipStack sipStack); argument

Completed in 236 milliseconds