src/jdk.sctp/share/classes/sun/nio/ch/sctp/SctpStdSocketOption.java
author michaelm
Thu, 14 Nov 2019 15:01:49 +0000
branchunixdomainchannels
changeset 59082 5e250ee9259e
parent 47216 71c04702a3d5
permissions -rw-r--r--
unixdomainchannels: fix some sockaddr_un address handling
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     1
/*
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
     2
 * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     4
 *
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    10
 *
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    15
 * accompanied this code).
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    16
 *
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
    23
 * questions.
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    24
 */
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
    25
package sun.nio.ch.sctp;
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    26
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    27
import com.sun.nio.sctp.SctpSocketOption;
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    28
import java.lang.annotation.Native;
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    29
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    30
public class SctpStdSocketOption<T>
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    31
    implements SctpSocketOption<T>
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    32
{
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    33
    /* for native mapping of int options */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    34
    @Native public static final int SCTP_DISABLE_FRAGMENTS = 1;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    35
    @Native public static final int SCTP_EXPLICIT_COMPLETE = 2;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    36
    @Native public static final int SCTP_FRAGMENT_INTERLEAVE = 3;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    37
    @Native public static final int SCTP_NODELAY = 4;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    38
    @Native public static final int SO_SNDBUF = 5;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    39
    @Native public static final int SO_RCVBUF = 6;
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 14342
diff changeset
    40
    @Native public static final int SO_LINGER = 7;
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    41
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    42
    private final String name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    43
    private final Class<T> type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    44
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    45
    /* for native mapping of int options */
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    46
    private int constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    47
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    48
    public SctpStdSocketOption(String name, Class<T> type) {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    49
        this.name = name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    50
        this.type = type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    51
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    52
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    53
    public SctpStdSocketOption(String name, Class<T> type, int constValue) {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    54
        this.name = name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    55
        this.type = type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    56
        this.constValue = constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    57
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    58
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    59
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    60
    public String name() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    61
        return name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    62
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    63
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    64
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    65
    public Class<T> type() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    66
        return type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    67
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    68
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    69
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    70
    public String toString() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    71
        return name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    72
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    73
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    74
    int constValue() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    75
        return constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    76
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    77
}