001 package dk.i1.sctp;
002
003 /**An association to a peer cannot be made.
004 Only happens when this node initiated the association attempt.
005 The association ID is not longer valid.
006 */
007 public class SCTPNotificationAssociationChangeCantStartAssociation extends SCTPNotificationAssociationChange {
008 SCTPNotificationAssociationChangeCantStartAssociation(
009 short flags,
010 short sac_type,
011 short sac_flags,
012 short sac_state,
013 short sac_error,
014 short sac_outbound_streams,
015 short sac_inbound_streams,
016 long sac_assoc_id
017 ) {
018 super(flags,
019 sac_type,
020 sac_flags,
021 State.SCTP_CANT_STR_ASSOC, //sac_state,
022 sac_error,
023 sac_outbound_streams,
024 sac_inbound_streams,
025 sac_assoc_id);
026 }
027 }