1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package com.sun.nio.sctp;
17
18 import java.net.SocketAddress;
19
20 @SuppressWarnings("all")
21 public class SctpStandardSocketOptions {
22 static {
23 UnsupportedOperatingSystemException.raise();
24 }
25
26 public static final SctpSocketOption<Boolean> SCTP_DISABLE_FRAGMENTS = null;
27 public static final SctpSocketOption<Boolean> SCTP_EXPLICIT_COMPLETE = null;
28 public static final SctpSocketOption<Integer> SCTP_FRAGMENT_INTERLEAVE = null;
29 public static final SctpSocketOption<InitMaxStreams> SCTP_INIT_MAXSTREAMS = null;
30 public static final SctpSocketOption<Boolean> SCTP_NODELAY = null;
31 public static final SctpSocketOption<SocketAddress> SCTP_PRIMARY_ADDR = null;
32 public static final SctpSocketOption<SocketAddress> SCTP_SET_PEER_PRIMARY_ADDR = null;
33 public static final SctpSocketOption<Integer> SO_LINGER = null;
34 public static final SctpSocketOption<Integer> SO_RCVBUF = null;
35 public static final SctpSocketOption<Integer> SO_SNDBUF = null;
36
37 public static class InitMaxStreams {
38
39 public static InitMaxStreams create(int i, int i1) {
40 return null;
41 }
42
43 public int maxInStreams() {
44 return 0;
45 }
46
47 public int maxOutStreams() {
48 return 0;
49 }
50
51 }
52 }