-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #334 from globalreachtech/support-custom-attribute…
…-data-types Support custom attribute data types
- Loading branch information
Showing
23 changed files
with
304 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/org/tinyradius/core/attribute/rfc/Rfc6572.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.tinyradius.core.attribute.rfc; | ||
|
||
public class Rfc6572 { | ||
|
||
private Rfc6572() { | ||
} | ||
|
||
public static final byte MOBILE_NODE_IDENTIFIER = (byte) 145; | ||
public static final byte SERVICE_SELECTION = (byte) 146; | ||
public static final byte PMIP6_HOME_LMA_IPV6_ADDRESS = (byte) 147; | ||
public static final byte PMIP6_VISITED_LMA_IPV6_ADDRESS = (byte) 148; | ||
public static final byte PMIP6_HOME_LMA_IPV4_ADDRESS = (byte) 149; | ||
public static final byte PMIP6_VISITED_LMA_IPV4_ADDRESS = (byte) 150; | ||
public static final byte PMIP6_HOME_HN_PREFIX = (byte) 151; | ||
public static final byte PMIP6_VISITED_HN_PREFIX = (byte) 152; | ||
public static final byte PMIP6_HOME_INTERFACE_ID = (byte) 153; | ||
public static final byte PMIP6_VISITED_INTERFACE_ID = (byte) 154; | ||
public static final byte PMIP6_HOME_IPV4_HOA = (byte) 155; | ||
public static final byte PMIP6_VISITED_IPV4_HOA = (byte) 156; | ||
public static final byte PMIP6_HOME_DHCP4_SERVER_ADDRESS = (byte) 157; | ||
public static final byte PMIP6_VISITED_DHCP4_SERVER_ADDRESS = (byte) 158; | ||
public static final byte PMIP6_HOME_DHCP6_SERVER_ADDRESS = (byte) 159; | ||
public static final byte PMIP6_VISITED_DHCP6_SERVER_ADDRESS = (byte) 160; | ||
public static final byte PMIP6_HOME_IPV4_GATEWAY = (byte) 161; | ||
public static final byte PMIP6_VISITED_IPV4_GATEWAY = (byte) 162; | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/org/tinyradius/core/attribute/rfc/Rfc6911.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.tinyradius.core.attribute.rfc; | ||
|
||
public class Rfc6911 { | ||
|
||
private Rfc6911() { | ||
} | ||
|
||
public static final byte FRAMED_IPV6_ADDRESS = (byte) 168; | ||
public static final byte DNS_SERVER_IPV6_ADDRESS = (byte) 169; | ||
public static final byte ROUTE_IPV6_INFORMATION = (byte) 170; | ||
public static final byte DELEGATED_IPV6_PREFIX_POOL = (byte) 171; | ||
public static final byte STATEFUL_IPV6_ADDRESS_POOL = (byte) 172; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.