-
Notifications
You must be signed in to change notification settings - Fork 43
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 #14 from avsm/mirage-fixes
Mirage fixes
- Loading branch information
Showing
20 changed files
with
566 additions
and
361 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
OASISFormat: 0.3 | ||
OCamlVersion: >= 4.00.0 | ||
Name: dns | ||
Version: 0.8.1 | ||
Version: 0.9.0 | ||
Authors: Anil Madhavapeddy, Tim Deegan, Richard Mortier, Haris Rotsos, David Sheets, Thomas Gazagnaire | ||
Maintainers: Anil Madhavapeddy <[email protected]> | ||
License: ISC | ||
|
@@ -28,18 +28,20 @@ Library dns | |
Modules: | ||
Base64, Hashcons, Loader, Name, Operators, Packet, Query, RR, Trie, | ||
Zone, Zone_lexer, Zone_parser, Resolvconf, Buf, Protocol | ||
BuildDepends: cstruct (>= 0.7.1), cstruct.syntax, re, re.str, ipaddr (>= 2.2.0) | ||
BuildDepends: cstruct (>= 0.7.1), cstruct.syntax, re, re.str, ipaddr (>= 2.2.0), io-page | ||
XMetaRequires: cstruct, re, re.str, ipaddr, io-page | ||
|
||
Library lwt | ||
Library "dns-lwt" | ||
Path: lwt | ||
Build$: flag(lwt) | ||
Install$: flag(lwt) | ||
Findlibname: lwt | ||
Modules: Dns_server_unix, Dns_resolver_unix | ||
BuildDepends: lwt.unix (>= 2.4.1), cstruct.lwt, lwt.syntax, dns, dns.lwt-core, ipaddr.unix | ||
BuildDepends: lwt.unix (>= 2.4.1), cstruct.lwt, lwt.syntax, dns, dns.lwt-core, ipaddr.unix, io-page.unix | ||
XMetaRequires: lwt.unix, cstruct.lwt, dns, dns.lwt-core, ipaddr.unix, io-page.unix | ||
FindlibParent: dns | ||
|
||
Library "lwt-core" | ||
Library "dns-lwt-core" | ||
Path: lwt | ||
Build$: flag(lwt) | ||
Install$: flag(lwt) | ||
|
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,33 +1,33 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: d3cbf6ebdc6f9751873f39d04006b018) | ||
version = "0.8.1" | ||
# DO NOT EDIT (digest: 37fff05d34d3cd5577e9d02d196797be) | ||
version = "0.9.0" | ||
description = "DNS client and server implementation" | ||
requires = "cstruct cstruct.syntax re re.str ipaddr" | ||
requires = "cstruct re re.str ipaddr io-page" | ||
archive(byte) = "dns.cma" | ||
archive(byte, plugin) = "dns.cma" | ||
archive(native) = "dns.cmxa" | ||
archive(native, plugin) = "dns.cmxs" | ||
exists_if = "dns.cma" | ||
package "lwt-core" ( | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
description = "DNS client and server implementation" | ||
requires = "lwt cstruct lwt.syntax dns" | ||
archive(byte) = "lwt-core.cma" | ||
archive(byte, plugin) = "lwt-core.cma" | ||
archive(native) = "lwt-core.cmxa" | ||
archive(native, plugin) = "lwt-core.cmxs" | ||
exists_if = "lwt-core.cma" | ||
archive(byte) = "dns-lwt-core.cma" | ||
archive(byte, plugin) = "dns-lwt-core.cma" | ||
archive(native) = "dns-lwt-core.cmxa" | ||
archive(native, plugin) = "dns-lwt-core.cmxs" | ||
exists_if = "dns-lwt-core.cma" | ||
) | ||
|
||
package "lwt" ( | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
description = "DNS client and server implementation" | ||
requires = "lwt.unix cstruct.lwt lwt.syntax dns dns.lwt-core ipaddr.unix" | ||
archive(byte) = "lwt.cma" | ||
archive(byte, plugin) = "lwt.cma" | ||
archive(native) = "lwt.cmxa" | ||
archive(native, plugin) = "lwt.cmxs" | ||
exists_if = "lwt.cma" | ||
requires = "lwt.unix cstruct.lwt dns dns.lwt-core ipaddr.unix io-page.unix" | ||
archive(byte) = "dns-lwt.cma" | ||
archive(byte, plugin) = "dns-lwt.cma" | ||
archive(native) = "dns-lwt.cmxa" | ||
archive(native, plugin) = "dns-lwt.cmxs" | ||
exists_if = "dns-lwt.cma" | ||
) | ||
# OASIS_STOP | ||
|
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 |
---|---|---|
|
@@ -103,3 +103,4 @@ let rdata_to_string = function | |
| X25 _ -> "X25" | ||
| DNSKEY _ -> "DNSKEY" | ||
| RRSIG _ -> "RRSIG" | ||
| DS _ -> "DS" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 4d3cc87f77cb704db96a7dc499206433) | ||
Dns | ||
# OASIS_STOP |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: afa1c4196651341a2e7387809c75f0c6) | ||
Dns_server | ||
Dns_resolver | ||
# OASIS_STOP |
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,5 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: afa1c4196651341a2e7387809c75f0c6) | ||
Dns_server | ||
Dns_resolver | ||
# OASIS_STOP |
File renamed without changes.
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,5 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 09366b2cb909b9a863aa9377be528fb5) | ||
Dns_server_unix | ||
Dns_resolver_unix | ||
# OASIS_STOP |
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.