ENet Documentation

repository·master·Indexed 25 days ago

https://github.com/lsalzman/enet

A reliable UDP networking library providing sequencing, reliability, and connection management, designed for high-performance applications such as games.

Tokens
116
Snippets
1
Records
1
Agent score
35%

What's inside ENet

  1. Build ENet from source via GitHub

    master

    If you have cloned the ENet repository from GitHub, you can build and install the library using the following steps. This requires autoreconf to generate the build system before configuring and compiling.

    # Generate the build system.
    autoreconf -vfi
    
    # Compile and install the library.
    ./configure && make && make install