forked from abh/geodns
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support new domain #3
Merged
Merged
Conversation
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
(Go 1.13 is just for the ./build script and to simplify testing, 1.12 and older likely work fine)
(this isn't actually used, I think, but the interface{} says it should be returned...)
Also: - NSID support - Support for DNS Cookies (closes abh#115)
(this is a tool just for the ntppool system ...)
- Travis update to latest two revisions (1.16.9, 1.17.2) - Drone update to latest Go revision (1.17.2) - Alpine docker update from 1.14-3.11 --> 1.17-3.14
bug: read lock missing from GetLocation GetLocation operates on a *geoip2.City (pointer) but does not incur a read-lock on the GeoIP struct like other functions.
Per feedback in PR #424, change functions `open`, `New`, and the GeoIP2 struct to allow for independent lock management, update the file in-place if `open` is called again, and remove enums and other references in the package.
Add checks for the DB to be active before making a query. This was only enabled on ASN, now enabled for City and Country queries.
(to be used by log pipelines reusing this package)
use warnings; use strict; use Text::CSV qw( csv ); my $d = csv(in => "GeoLite2-Country-Locations-en.csv", headers => "auto"); use Data::Dump qw(pp); for my $c (sort { $a->{country_iso_code} cmp $b->{country_iso_code}} @$d) { next unless $c->{country_name}; my $cc = lc($c->{country_iso_code}); my $co = lc($c->{continent_name}); $co =~ s/\s+/-/; unless ($cc) { warn pp($c); next; } print qq["$cc":\t"$co",\n]; }
Rebase upstream
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.