dk.i1.sctp
Class sctp_initmsg

java.lang.Object
  extended by dk.i1.sctp.sctp_initmsg

public class sctp_initmsg
extends java.lang.Object


Field Summary
 short sinit_max_attempts
          This integer specifies how many attempts the SCTP endpoint should make at resending the INIT.
 short sinit_max_init_timeo
          This value represents the largest Time-Out or RTO value (in milliseconds) to use in attempting an INIT.
 short sinit_max_instreams
          This value represents the maximum number of inbound streams the application is prepared to support.
 short sinit_num_ostreams
          This is an integer number representing the number of streams that the application wishes to be able to send to.
 
Constructor Summary
sctp_initmsg()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sinit_num_ostreams

public short sinit_num_ostreams
This is an integer number representing the number of streams that the application wishes to be able to send to. This number is confirmed in the SCTP_COMM_UP notification and must be verified since it is a negotiated number with the remote endpoint. The default value of 0 indicates to use the endpoint default value.


sinit_max_instreams

public short sinit_max_instreams
This value represents the maximum number of inbound streams the application is prepared to support. This value is bounded by the actual implementation. In other words the user MAY be able to support more streams than the Operating System. In such a case, the Operating System limit overrides the value requested by the user. The default value of 0 indicates to use the endpoints default value.


sinit_max_attempts

public short sinit_max_attempts
This integer specifies how many attempts the SCTP endpoint should make at resending the INIT. This value overrides the system SCTP 'Max.Init.Retransmits' value. The default value of 0 indicates to use the endpoints default value. This is normally set to the system's default 'Max.Init.Retransmit' value.


sinit_max_init_timeo

public short sinit_max_init_timeo
This value represents the largest Time-Out or RTO value (in milliseconds) to use in attempting an INIT. Normally the 'RTO.Max' is used to limit the doubling of the RTO upon timeout. For the INIT message this value MAY override 'RTO.Max'. This value MUST NOT influence 'RTO.Max' during data transmission and is only used to bound the initial setup time. A default value of 0 indicates to use the endpoints default value. This is normally set to the system's 'RTO.Max' value (60 seconds).

Constructor Detail

sctp_initmsg

public sctp_initmsg()