This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5737ce2
commit ab90154
Showing
8 changed files
with
84 additions
and
74 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
package com.github.druk.dnssd; | ||
|
||
// Copied from nameser.h | ||
@SuppressWarnings(value = "") | ||
public class NSClass { | ||
|
||
public static int INVALID = 0; /* Cookie. */ | ||
public static int IN = 1; /* Internet. */ | ||
public static int CLASS2 = 2; /* unallocated/unsupported. */ | ||
public static int CHAOS = 3; /* MIT Chaos-net. */ | ||
public static int HS = 4; /* MIT Hesiod. */ | ||
public final static int INVALID = 0; /* Cookie. */ | ||
public final static int IN = 1; /* Internet. */ | ||
public final static int CLASS2 = 2; /* unallocated/unsupported. */ | ||
public final static int CHAOS = 3; /* MIT Chaos-net. */ | ||
public final static int HS = 4; /* MIT Hesiod. */ | ||
/* Query class values which do not appear in resource records */ | ||
public static int NONE = 254; /* for prereq. sections in update requests */ | ||
public static int ANY = 255; /* Wildcard match. */ | ||
public static int MAX = 65536; | ||
public final static int NONE = 254; /* for prereq. sections in update requests */ | ||
public final static int ANY = 255; /* Wildcard match. */ | ||
public final static int MAX = 65536; | ||
} |
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