jdk/src/share/classes/sun/nio/ch/sctp/SctpStdSocketOption.java
author ohair
Tue, 10 Apr 2012 08:22:03 -0700
changeset 12317 9670c1610c53
parent 11823 ee83ae88512d
child 14342 8435a30053c1
permissions -rw-r--r--
7074397: Build infrastructure changes (makefile re-write) Summary: New makefiles transition, old and new living side by side for now. Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser Contributed-by: ohrstrom <fredrik.ohrstrom@oracle.com>, erikj <erik.joelsson@oracle.com>, ihse <magnus.ihse.bursie@oracle.com>, tgranat <torbjorn.granat@oracle.com>, ykantser <yekaterina.kantserova@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2542
diff changeset
     2
 * Copyright (c) 2009, 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;
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents: 11823
diff changeset
    28
import javax.tools.annotation.GenerateNativeHeader;
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    29
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents: 11823
diff changeset
    30
/* No native methods here, but the constants are needed in the supporting JNI code */
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents: 11823
diff changeset
    31
@GenerateNativeHeader
2542
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    32
public class SctpStdSocketOption<T>
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    33
    implements SctpSocketOption<T>
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    34
{
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    35
    /* for native mapping of int options */
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    36
    public static final int SCTP_DISABLE_FRAGMENTS = 1;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    37
    public static final int SCTP_EXPLICIT_COMPLETE = 2;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    38
    public static final int SCTP_FRAGMENT_INTERLEAVE = 3;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    39
    public static final int SCTP_NODELAY = 4;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    40
    public static final int SO_SNDBUF = 5;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    41
    public static final int SO_RCVBUF = 6;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    42
    public static final int SO_LINGER = 7;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    43
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    44
    private final String name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    45
    private final Class<T> type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    46
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    47
    /* for native mapping of int options */
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    48
    private int constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    49
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    50
    public SctpStdSocketOption(String name, Class<T> type) {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    51
        this.name = name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    52
        this.type = type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    53
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    54
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    55
    public SctpStdSocketOption(String name, Class<T> type, int constValue) {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    56
        this.name = name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    57
        this.type = type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    58
        this.constValue = constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    59
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    60
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    61
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    62
    public String name() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    63
        return name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    64
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    65
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    66
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    67
    public Class<T> type() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    68
        return type;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    69
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    70
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    71
    @Override
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    72
    public String toString() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    73
        return name;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    74
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    75
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    76
    int constValue() {
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    77
        return constValue;
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    78
    }
d859108aea12 4927640: Implementation of the sctp protocol
chegar
parents:
diff changeset
    79
}