001 package dk.i1.sctp;
002
003 /**An association has been shut down (cleanly).
004 The association ID is not longer valid.
005 */
006 public class SCTPNotificationAssociationChangeShutdownComplete extends SCTPNotificationAssociationChange {
007 SCTPNotificationAssociationChangeShutdownComplete(
008 short flags,
009 short sac_type,
010 short sac_flags,
011 short sac_state,
012 short sac_error,
013 short sac_outbound_streams,
014 short sac_inbound_streams,
015 long sac_assoc_id
016 ) {
017 super(flags,
018 sac_type,
019 sac_flags,
020 State.SCTP_SHUTDOWN_COMP, //sac_state,
021 sac_error,
022 sac_outbound_streams,
023 sac_inbound_streams,
024 sac_assoc_id);
025 }
026 }