Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions example/source/app.d
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import maxmind.db;
import std.stdio;
import std.conv;

/**
* Program entry point: takes an IP address as the input, and returns a
Expand Down
1 change: 1 addition & 0 deletions source/maxmind/db.d
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import std.conv : to;
import std.mmfile;
import std.regex;
import std.string;
import std.bitmanip;

/** Constant byte sequence that marks the beginning of the global metadata section */
protected const ubyte[] METADATA_MARKER = [0xAB, 0xCD, 0xEF, 'M', 'a', 'x', 'M', 'i', 'n', 'd', '.', 'c', 'o', 'm'];
Expand Down