| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 
 | package MaxMind::DB::Writer;
use strict;
use warnings;
use 5.013002;
our $VERSION = '0.300003';
1;
# ABSTRACT: Create MaxMind DB database files
__END__
=pod
=encoding UTF-8
=head1 NAME
MaxMind::DB::Writer - Create MaxMind DB database files
=head1 VERSION
version 0.300003
=head1 SYNOPSIS
    use MaxMind::DB::Writer::Tree;
    my %types = (
        color => 'utf8_string',
        dogs  => [ 'array', 'utf8_string' ],
        size  => 'uint16',
    );
    my $tree = MaxMind::DB::Writer::Tree->new(
        ip_version            => 6,
        record_size           => 24,
        database_type         => 'My-IP-Data',
        languages             => ['en'],
        description           => { en => 'My database of IP data' },
        map_key_type_callback => sub { $types{ $_[0] } },
    );
    $tree->insert_network(
        '8.8.8.0/24',
        {
            color => 'blue',
            dogs  => [ 'Fido', 'Ms. Pretty Paws' ],
            size  => 42,
        },
    );
    open my $fh, '>:raw', '/path/to/my-ip-data.mmdb';
    $tree->write_tree($fh);
=head1 DESCRIPTION
This distribution contains the code necessary to write L<MaxMind DB database
files|http://maxmind.github.io/MaxMind-DB/>. See L<MaxMind::DB::Writer::Tree>
for API docs.
=head1 MAC OS X SUPPORT
If you're running into install errors under Mac OS X, you may need to force a
build of the 64 bit binary. For example, if you're installing via C<cpanm>:
    ARCHFLAGS="-arch x86_64" cpanm MaxMind::DB::Writer
=head1 WINDOWS SUPPORT
This distribution does not currently work on Windows. Reasonable patches for
Windows support are very welcome. You will probably need to start by making
L<Math::Int128> work on Windows, since we use that module's C API for dealing
with 128-bit integers to represent IPv6 addresses numerically.
=head1 SUPPORT
Please report all issues with this code using the GitHub issue tracker at
L<https://github.com/maxmind/MaxMind-DB-Writer-perl/issues>.
We welcome patches as pull requests against our GitHub repository at
L<https://github.com/maxmind/MaxMind-DB-Writer-perl>.
Bugs may be submitted through L<https://github.com/maxmind/MaxMind-DB-Writer-perl/issues>.
=head1 AUTHORS
=over 4
=item *
Olaf Alders <oalders@maxmind.com>
=item *
Greg Oschwald <goschwald@maxmind.com>
=item *
Dave Rolsky <drolsky@maxmind.com>
=item *
Mark Fowler <mfowler@maxmind.com>
=back
=head1 CONTRIBUTORS
=for stopwords Florian Ragwitz Ilya Melamed Jan Bieron Narsimham Chelluri Thomas J Mather William Storey
=over 4
=item *
Florian Ragwitz <rafl@debian.org>
=item *
Ilya Melamed <ilya77@gmail.com>
=item *
Jan Bieron <jbieron+github@gmail.com>
=item *
Narsimham Chelluri <nchelluri@users.noreply.github.com>
=item *
Thomas J Mather <tjmather@maxmind.com>
=item *
William Storey <wstorey@maxmind.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by MaxMind, Inc.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
 |