001 package dk.i1.sctp;
002 public class SCTPNotificationShutdownEvent extends SCTPNotification {
003 public final AssociationId sse_assoc_id;
004 SCTPNotificationShutdownEvent(short flags,
005 long sse_assoc_id)
006 {
007 super(flags,Type.SCTP_SHUTDOWN_EVENT);
008 this.sse_assoc_id = new AssociationId(sse_assoc_id);
009 }
010 }