Fix a compilation error with the SCTP module in Mac

This commit is contained in:
Trustin Lee 2012-02-20 16:04:46 -08:00
parent 97b4876c08
commit a715220556

View File

@ -52,4 +52,6 @@ public abstract class SctpChannel extends AbstractSelectableChannel {
public abstract <T> MessageInfo receive(ByteBuffer dst, T attachment, NotificationHandler<T> handler) throws IOException;
public abstract int send(ByteBuffer src, MessageInfo messageInfo) throws IOException;
public abstract Set<SctpSocketOption<?>> supportedOptions();
}