@@ -92,8 +92,8 @@ typedef struct MMDB_entry_data_list_s {
9292
9393# DESCRIPTION
9494
95- The libmaxminddb library provides functions for working with MaxMind DB files. See
96- https://maxmind.github.io/MaxMind-DB/ for the MaxMind DB format
95+ The libmaxminddb library provides functions for working with MaxMind DB files.
96+ See https://maxmind.github.io/MaxMind-DB/ for the MaxMind DB format
9797specification. The database and results are all represented by different
9898data structures. Databases are opened by calling `MMDB_open()`. You can
9999look up IP addresses as a string with `MMDB_lookup_string()` or as a
@@ -556,9 +556,9 @@ int MMDB_aget_value(
556556The three functions allow three slightly different calling styles, but they
557557all do the same thing.
558558
559- The first parameter is an `MMDB_entry_s` value . In most cases this will come
560- from the `MMDB_lookup_result_s` value returned by `MMDB_lookup_string()` or
561- `MMDB_lookup_sockaddr()`.
559+ The first parameter is a pointer to an `MMDB_entry_s` struct . In most cases
560+ this will be a pointer to the `entry` field of the `MMDB_lookup_result_s`
561+ value returned by `MMDB_lookup_string()` or `MMDB_lookup_sockaddr()`.
562562
563563The second parameter is a reference to an `MMDB_entry_data_s` structure. This
564564will be populated with the data that is being looked up, if any is found. If
@@ -631,9 +631,9 @@ int MMDB_get_entry_data_list(
631631 MMDB_entry_data_list_s **const entry_data_list);
632632```
633633
634- The ` start ` parameter is an ` MMDB_entry_s ` value . In most cases this will come
635- from the ` entry ` field of the ` MMDB_lookup_result_s ` value returned by
636- ` MMDB_lookup_string() ` or ` MMDB_lookup_sockaddr() ` .
634+ The ` start ` parameter is a pointer to an ` MMDB_entry_s ` struct . In most cases
635+ this will be a pointer to the ` entry ` field of the ` MMDB_lookup_result_s `
636+ value returned by ` MMDB_lookup_string() ` or ` MMDB_lookup_sockaddr() ` .
637637
638638This function allows you to get all of the data for a complex data structure
639639at once, rather than looking up each piece using repeated calls to
0 commit comments