All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jnr.constants.platform.freebsd.ProtocolFamily Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Mon Feb 23 15:25:11 -0800 2009
package jnr.constants.platform.freebsd;
public enum ProtocolFamily implements jnr.constants.Constant {
PF_UNSPEC(0),
PF_LOCAL(1),
PF_UNIX(1),
PF_INET(2),
PF_IMPLINK(3),
PF_PUP(4),
PF_CHAOS(5),
// PF_NS not defined
PF_ISO(7),
PF_OSI(7),
PF_ECMA(8),
PF_DATAKIT(9),
PF_CCITT(10),
PF_SNA(11),
PF_DECnet(12),
PF_DLI(13),
PF_LAT(14),
PF_HYLINK(15),
PF_APPLETALK(16),
PF_ROUTE(17),
PF_LINK(18),
PF_XTP(19),
PF_COIP(20),
PF_CNT(21),
PF_SIP(24),
PF_IPX(23),
PF_RTIP(22),
PF_PIP(25),
// PF_NDRV not defined
PF_ISDN(26),
PF_KEY(27),
PF_INET6(28),
PF_NATM(29),
// PF_SYSTEM not defined
PF_NETBIOS(6),
// PF_PPP not defined
PF_ATM(30),
PF_NETGRAPH(32),
PF_MAX(37);
private final int value;
private ProtocolFamily(int value) { this.value = value; }
public static final long MIN_VALUE = 0;
public static final long MAX_VALUE = 37;

public final int value() { return value; }
public final int intValue() { return value; }
public final long longValue() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy