Açıklama Yok

Vladislav Gritsenko f670a5aeb3 moved docs into misc 6 yıl önce
include c769e3badb moved src files to a separate dir 6 yıl önce
misc f670a5aeb3 moved docs into misc 6 yıl önce
src c769e3badb moved src files to a separate dir 6 yıl önce
test d45b729a3a updated license and readme 6 yıl önce
.editorconfig c769e3badb moved src files to a separate dir 6 yıl önce
.gitignore d42061f58f added single-header generator script, some cleanup 6 yıl önce
.travis.yml bd28d2d19f added travis.ci 6 yıl önce
CMakeLists.txt c769e3badb moved src files to a separate dir 6 yıl önce
LICENSE d45b729a3a updated license and readme 6 yıl önce
README.md e744a9b3b0 updated header 6 yıl önce
package.json d80b40c80c Fixes 6 yıl önce

README.md

ENet


Build status NPM version Discord server license


ENet - Simple, lightweight and reliable UDP networking library written on pure C
Brought to you by @lsalzman, @inlife, @zaklaus and other contributors!

Disclaimer

This is a fork of the original library lsalzman/enet. While original repo offers a stable, time-tested wonderful library, we are trying to change some things, things, which can't be reflected on the main repo, like:

  • NPM package distribution
  • Single-Header style code
  • Removed some config/make files
  • Project/Code cleanup
  • And other various changes

Description

ENet's purpose is to provide a relatively thin, simple and robust network communication layer on top of UDP (User Datagram Protocol).The primary feature it provides is optional reliable, in-order delivery of packets.

ENet omits certain higher level networking features such as authentication, lobbying, server discovery, encryption, or other similar tasks that are particularly application specific so that the library remains flexible, portable, and easily embeddable.

Installation (via npm)

Install library using (omit --save if you dont have npm project initilized)

$ npm install enet.c --save

Add include path to the library node_modules/enet.c/include to your makefile/

Installation (manually)

Dowload file include/enet.h and just add to your project.

Usage

Make sure you add a define for ENET_IMPLEMENTATION before including the enet.h.

Here is a simple server demo, it will wait 1 second for events, and then exit if none were found:

#define ENET_IMPLEMENTATION
#include <enet.h>

int main() {
    if (enet_initialize () != 0) {
        printf("An error occurred while initializing ENet.\n");
        return 1;
    }

    ENetAddress address = {0};

    address.host = ENET_HOST_ANY; /* Bind the server to the default localhost.     */
    address.port = 7777; /* Bind the server to port 7777. */

    #define MAX_CLIENTS 32

    /* create a server */
    ENetHost * server = enet_host_create(&address, MAX_CLIENTS, 2, 0, 0);

    if (server == NULL) {
        printf("An error occurred while trying to create an ENet server host.\n");
        return 1;
    }

    printf("Started a server...\n");

    ENetEvent event;

    /* Wait up to 1000 milliseconds for an event. (WARNING: blocking) */
    while (enet_host_service(server, &event, 1000) > 0) {
        switch (event.type) {
            case ENET_EVENT_TYPE_CONNECT:
                printf("A new client connected from %x:%u.\n",  event.peer->address.host, event.peer->address.port);
                /* Store any relevant client information here. */
                event.peer->data = "Client information";
                break;
            case ENET_EVENT_TYPE_RECEIVE:
                printf("A packet of length %lu containing %s was received from %s on channel %u.\n",
                        event.packet->dataLength,
                        event.packet->data,
                        event.peer->data,
                        event.channelID);

                /* Clean up the packet now that we're done using it. */
                enet_packet_destroy (event.packet);
                break;

            case ENET_EVENT_TYPE_DISCONNECT:
                printf ("%s disconnected.\n", event.peer->data);
                /* Reset the peer's client information. */
                event.peer->data = NULL;
                break;

            case ENET_EVENT_TYPE_NONE: break;
        }
    }

    enet_host_destroy(server);
    enet_deinitialize();
    return 0;
}

Tutorials

More information, examples and tutorials can be found at the official site: http://enet.bespin.org/