001    package dk.i1.sctp;
002    
003    public class SCTPNotificationRemoteError extends SCTPNotification {
004            public final short sre_error;
005            public final AssociationId sre_assoc_id;
006            //public byte[] sre_data
007            SCTPNotificationRemoteError(short flags,
008                                        short sre_error,
009                                        long sre_assoc_id)
010            {
011                    super(flags,Type.SCTP_REMOTE_ERROR);
012                    this.sre_error = sre_error;
013                    this.sre_assoc_id = new AssociationId(sre_assoc_id);
014            }
015    }