1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-11-17 14:47:18 +01:00

Update the MaxmindDB library to latest version. Also include configs for all platforms.

This commit is contained in:
Sandu Liviu Catalin
2016-11-14 14:05:29 +02:00
parent ded30fdeac
commit 2ef75d0dce
6 changed files with 770 additions and 73 deletions

View File

@@ -9,7 +9,7 @@ extern "C" {
#define _POSIX_C_SOURCE 200112L
#endif
#include <maxminddb_config.h>
#include "maxminddb_config.h"
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
@@ -20,13 +20,13 @@ extern "C" {
#include <winsock2.h>
#include <ws2tcpip.h>
/* libmaxminddb package version from configure */
#define PACKAGE_VERSION "1.1.4"
#define PACKAGE_VERSION "1.2.0"
typedef ADDRESS_FAMILY sa_family_t;
#if defined(_MSC_VER)
/* MSVC doesn't define signed size_t, copy it from configure */
#define ssize_t int
#define ssize_t SSIZE_T
/* MSVC doesn't support restricted pointers */
#define restrict
@@ -54,6 +54,11 @@ typedef ADDRESS_FAMILY sa_family_t;
#define MMDB_DATA_TYPE_BOOLEAN (14)
#define MMDB_DATA_TYPE_FLOAT (15)
#define MMDB_RECORD_TYPE_SEARCH_NODE (0)
#define MMDB_RECORD_TYPE_EMPTY (1)
#define MMDB_RECORD_TYPE_DATA (2)
#define MMDB_RECORD_TYPE_INVALID (3)
/* flags for open */
#define MMDB_MODE_MMAP (1)
#define MMDB_MODE_MASK (7)
@@ -178,6 +183,10 @@ typedef struct MMDB_s {
typedef struct MMDB_search_node_s {
uint64_t left_record;
uint64_t right_record;
uint8_t left_record_type;
uint8_t right_record_type;
MMDB_entry_s left_record_entry;
MMDB_entry_s right_record_entry;
} MMDB_search_node_s;
/* *INDENT-OFF* */