Home
last modified time | relevance | path

Searched refs:readTimeout (Results 1 – 5 of 5) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/parser/
DPipeline.java54 private int readTimeout; field in Pipeline
107 if (this.readTimeout == -1) in startTimer()
112 this.timer.schedule(this.myTimerTask, this.readTimeout); in startTimer()
116 if (this.readTimeout == -1) in stopTimer()
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) { in Pipeline() argument
128 this.readTimeout = readTimeout; in Pipeline()
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackImpl.java869 String readTimeout = configurationProperties in SipStackImpl() local
871 if (readTimeout != null) { in SipStackImpl()
874 int rt = Integer.parseInt(readTimeout); in SipStackImpl()
876 super.readTimeout = rt; in SipStackImpl()
878 System.err.println("Value too low " + readTimeout); in SipStackImpl()
883 getStackLogger().logError("Bad read timeout " + readTimeout); in SipStackImpl()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DTCPMessageChannel.java594 hispipe = new Pipeline(myClientInputStream, sipStack.readTimeout, in run()
DTLSMessageChannel.java574 hispipe = new Pipeline(myClientInputStream, sipStack.readTimeout, in run()
DSIPTransactionStack.java286 protected int readTimeout; field in SIPTransactionStack
442 this.readTimeout = -1; in SIPTransactionStack()