001    package dk.i1.sctp;
002    
003    /**An association has been brought up.
004    */
005    public class SCTPNotificationAssociationChangeCommUp extends SCTPNotificationAssociationChange {
006            SCTPNotificationAssociationChangeCommUp(
007                    short flags,
008                    short sac_type,
009                    short sac_flags,
010                    short sac_state,
011                    short sac_error,
012                    short sac_outbound_streams,
013                    short sac_inbound_streams,
014                    long sac_assoc_id
015            ) {
016                    super(flags,
017                          sac_type,
018                          sac_flags,
019                          State.SCTP_COMM_UP, //sac_state,
020                          sac_error,
021                          sac_outbound_streams,
022                          sac_inbound_streams,
023                          sac_assoc_id);
024            }
025    }