rgrinberg / bencode

Bencode (.torrent file format) reader/writer in OCaml
24 stars 4 forks source link

Bencode.Integer doesn't work on 32-bit platforms #7

Closed cfcs closed 6 years ago

cfcs commented 6 years ago

The definition is:

> constr(t) Bencode.Integer int                                                                        

This prevents the correct use of files > 2gb on x86 - mind if I submit a PR to change the type to int64?

rgrinberg commented 6 years ago

Yes, that would be appropriate. Thanks.