001 package dk.i1.sctp;
002
003 /**A peer has been restarted.
004 The association to the peer was lost and then re-established. All
005 application-level state is lost at the other end. This can happen
006 if the peer rebotted without us noticing it, and the the peer
007 initiated a "new" association to us whiel we believed that the old
008 association stil existed.
009 */
010 public class SCTPNotificationAssociationChangeRestart extends SCTPNotificationAssociationChange {
011 SCTPNotificationAssociationChangeRestart(
012 short flags,
013 short sac_type,
014 short sac_flags,
015 short sac_state,
016 short sac_error,
017 short sac_outbound_streams,
018 short sac_inbound_streams,
019 long sac_assoc_id
020 ) {
021 super(flags,
022 sac_type,
023 sac_flags,
024 State.SCTP_RESTART, //sac_state,
025 sac_error,
026 sac_outbound_streams,
027 sac_inbound_streams,
028 sac_assoc_id);
029 }
030 }