From a715220556128b0bfee09ffcbf06ea19222a4ee9 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 20 Feb 2012 16:04:46 -0800 Subject: [PATCH] Fix a compilation error with the SCTP module in Mac --- transport-sctp/src/main/java/com/sun/nio/sctp/SctpChannel.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transport-sctp/src/main/java/com/sun/nio/sctp/SctpChannel.java b/transport-sctp/src/main/java/com/sun/nio/sctp/SctpChannel.java index 01ad77c0e3..4d0c906d0e 100644 --- a/transport-sctp/src/main/java/com/sun/nio/sctp/SctpChannel.java +++ b/transport-sctp/src/main/java/com/sun/nio/sctp/SctpChannel.java @@ -52,4 +52,6 @@ public abstract class SctpChannel extends AbstractSelectableChannel { public abstract MessageInfo receive(ByteBuffer dst, T attachment, NotificationHandler handler) throws IOException; public abstract int send(ByteBuffer src, MessageInfo messageInfo) throws IOException; + + public abstract Set> supportedOptions(); }