No description
  • C++ 93.2%
  • Python 4.3%
  • C 1.3%
  • CMake 0.6%
  • Makefile 0.4%
  • Other 0.2%
Find a file
Daniel Baumann c16f6a9610
Releasing fastforward version 2.0.13-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-06-09 16:39:01 +02:00
.github Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
bindings Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
cmake/Modules Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
debian Releasing fastforward version 2.0.13-1~ffwd13+u1. 2026-06-09 16:39:01 +02:00
deps/try_signal Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
docs Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
examples Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
fuzzers Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
include/libtorrent Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
simulation Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
src Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
test Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
tools Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
.gitignore Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
.gitmodules Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
.pre-commit-config.yaml Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
appveyor.yml Merging upstream version 2.0.12. 2026-03-14 19:48:30 +01:00
AUTHORS Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
ChangeLog Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
clang_tidy.jam Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
CMakeLists.txt Merging upstream version 2.0.12. 2026-03-14 19:48:30 +01:00
COPYING Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
Jamfile Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
Jamroot.jam Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
LibtorrentRasterbarConfig.cmake.in Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
LICENSE Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
Makefile Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
NEWS Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
project-config.jam Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
pyproject.toml Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
README.rst Merging upstream version 2.0.13. 2026-06-09 16:38:44 +02:00
setup.cfg Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00
setup.py Adding upstream version 2.0.11. 2026-03-14 19:47:07 +01:00

.. image:: docs/img/logo-color-text.png

.. image:: https://github.com/arvidn/libtorrent/actions/workflows/windows.yml/badge.svg
    :target: https://github.com/arvidn/libtorrent/actions/workflows/windows.yml

.. image:: https://github.com/arvidn/libtorrent/actions/workflows/macos.yml/badge.svg
    :target: https://github.com/arvidn/libtorrent/actions/workflows/macos.yml

.. image:: https://github.com/arvidn/libtorrent/actions/workflows/linux.yml/badge.svg
    :target: https://github.com/arvidn/libtorrent/actions/workflows/linux.yml

.. image:: https://github.com/arvidn/libtorrent/actions/workflows/python.yml/badge.svg
    :target: https://github.com/arvidn/libtorrent/actions/workflows/python.yml

.. image:: https://ci.appveyor.com/api/projects/status/w7teauvub5813mew/branch/RC_2_0?svg=true
    :target: https://ci.appveyor.com/project/arvidn/libtorrent/branch/RC_2_0

.. image:: https://oss-fuzz-build-logs.storage.googleapis.com/badges/libtorrent.svg
    :target: https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&q=proj%3Alibtorrent&can=1

.. image:: https://codecov.io/github/arvidn/libtorrent/coverage.svg?branch=RC_2_0
    :target: https://codecov.io/github/arvidn/libtorrent?branch=RC_2_0&view=all#sort=missing&dir=desc

.. image:: https://www.openhub.net/p/rasterbar-libtorrent/widgets/project_thin_badge.gif
    :target: https://www.openhub.net/p/rasterbar-libtorrent

.. image:: https://bestpractices.coreinfrastructure.org/projects/3020/badge
    :target: https://bestpractices.coreinfrastructure.org/en/projects/3020

libtorrent is an open source C++ library implementing the BitTorrent protocol,
along with most popular extensions, making it suitable for real world
deployment. It is configurable to be able to fit both servers and embedded
devices.

The main goals of libtorrent are to be efficient and easy to use.

See `libtorrent.org`__ for more detailed build and usage instructions.

.. __: https://libtorrent.org

To build with boost-build, make sure boost and boost-build is installed and run:

   b2

In the libtorrent root. To build the examples, run ``b2`` in the ``examples``
directory.

See `building.html`__ for more details on how to build and which configuration
options are available. For python bindings, see `the python docs`__.

libtorrent `ABI report`_.

.. _`ABI report`: https://abi-laboratory.pro/index.php?view=timeline&l=libtorrent

libtorrent package versions in linux distributions, on repology_.

.. _repology: https://repology.org/project/libtorrent-rasterbar/versions

.. __: docs/building.rst
.. __: docs/python_binding.rst