Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bilayer branch inited. #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,5 @@ add_library(enet STATIC
protocol.c
unix.c
win32.c
bilayer.c
)
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ enetinclude_HEADERS = \
include/enet/win32.h

lib_LTLIBRARIES = libenet.la
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c bilayer.c
# see info '(libtool) Updating version info' before making a release
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 7:1:0
AM_CPPFLAGS = -I$(top_srcdir)/include
Expand Down
159 changes: 159 additions & 0 deletions bilayer.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
#include <string.h>

#include "bilayer.h"

ENetTransport enet_socket_create_transport(ENetSocketType type, ENetSocket socket)
{
ENetTransport transport;

transport.type = ENET_TRANSPORT_TYPE_SOCKET;
transport.context = (void*)0x1;
transport.handle.socket = socket;

transport.send = enet_socket_send;
transport.recv = enet_socket_receive;

return transport;
}


ENetHost *
enet_host_create_bilayer (ENetTransportType type, const ENetAddress * address, size_t peerCount, size_t channelLimit, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
{
if (type == ENET_TRANSPORT_TYPE_CUSTOM) {
ENetHost *host = enet_host_create_notp(address, peerCount, channelLimit, incomingBandwidth, outgoingBandwidth);
host->address = *address;
return host;
} else {
ENetHost *host = enet_host_create(address, peerCount, channelLimit, incomingBandwidth, outgoingBandwidth);
ENetTransport transport = enet_socket_create_transport(ENET_SOCKET_TYPE_DATAGRAM, host->socket);
host->transport = transport;
return host;
}
return NULL;
}

void enet_host_transport(ENetHost *host, const ENetTransport *transport)
{
if (transport->type != ENET_TRANSPORT_TYPE_CUSTOM) {
// error
}

if (transport->context == NULL) {
// error
}

host->transport = *transport;
}

ENetHost *
enet_host_create_notp (const ENetAddress * address, size_t peerCount, size_t channelLimit, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
{
ENetHost * host;
ENetPeer * currentPeer;

if (peerCount > ENET_PROTOCOL_MAXIMUM_PEER_ID)
return NULL;

host = (ENetHost *) enet_malloc (sizeof (ENetHost));
if (host == NULL)
return NULL;
memset (host, 0, sizeof (ENetHost));

host -> peers = (ENetPeer *) enet_malloc (peerCount * sizeof (ENetPeer));
if (host -> peers == NULL)
{
enet_free (host);

return NULL;
}
memset (host -> peers, 0, peerCount * sizeof (ENetPeer));

/*
host -> socket = enet_socket_create (ENET_SOCKET_TYPE_DATAGRAM);
if (host -> socket == ENET_SOCKET_NULL || (address != NULL && enet_socket_bind (host -> socket, address) < 0))
{
if (host -> socket != ENET_SOCKET_NULL)
enet_socket_destroy (host -> socket);

enet_free (host -> peers);
enet_free (host);

return NULL;
}

enet_socket_set_option (host -> socket, ENET_SOCKOPT_NONBLOCK, 1);
enet_socket_set_option (host -> socket, ENET_SOCKOPT_BROADCAST, 1);
enet_socket_set_option (host -> socket, ENET_SOCKOPT_RCVBUF, ENET_HOST_RECEIVE_BUFFER_SIZE);
enet_socket_set_option (host -> socket, ENET_SOCKOPT_SNDBUF, ENET_HOST_SEND_BUFFER_SIZE);

if (address != NULL && enet_socket_get_address (host -> socket, & host -> address) < 0)
host -> address = * address;

*/

if (! channelLimit || channelLimit > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
channelLimit = ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT;
else
if (channelLimit < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT)
channelLimit = ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT;

host -> randomSeed = (enet_uint32) (size_t) host;
host -> randomSeed += enet_host_random_seed ();
host -> randomSeed = (host -> randomSeed << 16) | (host -> randomSeed >> 16);
host -> channelLimit = channelLimit;
host -> incomingBandwidth = incomingBandwidth;
host -> outgoingBandwidth = outgoingBandwidth;
host -> bandwidthThrottleEpoch = 0;
host -> recalculateBandwidthLimits = 0;
host -> mtu = ENET_HOST_DEFAULT_MTU;
host -> peerCount = peerCount;
host -> commandCount = 0;
host -> bufferCount = 0;
host -> checksum = NULL;
host -> receivedAddress.host = ENET_HOST_ANY;
host -> receivedAddress.port = 0;
host -> receivedData = NULL;
host -> receivedDataLength = 0;

host -> totalSentData = 0;
host -> totalSentPackets = 0;
host -> totalReceivedData = 0;
host -> totalReceivedPackets = 0;

host -> connectedPeers = 0;
host -> bandwidthLimitedPeers = 0;
host -> duplicatePeers = ENET_PROTOCOL_MAXIMUM_PEER_ID;
host -> maximumPacketSize = ENET_HOST_DEFAULT_MAXIMUM_PACKET_SIZE;
host -> maximumWaitingData = ENET_HOST_DEFAULT_MAXIMUM_WAITING_DATA;

host -> compressor.context = NULL;
host -> compressor.compress = NULL;
host -> compressor.decompress = NULL;
host -> compressor.destroy = NULL;

host -> intercept = NULL;

enet_list_clear (& host -> dispatchQueue);

for (currentPeer = host -> peers;
currentPeer < & host -> peers [host -> peerCount];
++ currentPeer)
{
currentPeer -> host = host;
currentPeer -> incomingPeerID = currentPeer - host -> peers;
currentPeer -> outgoingSessionID = currentPeer -> incomingSessionID = 0xFF;
currentPeer -> data = NULL;

enet_list_clear (& currentPeer -> acknowledgements);
enet_list_clear (& currentPeer -> sentReliableCommands);
enet_list_clear (& currentPeer -> sentUnreliableCommands);
enet_list_clear (& currentPeer -> outgoingReliableCommands);
enet_list_clear (& currentPeer -> outgoingUnreliableCommands);
enet_list_clear (& currentPeer -> dispatchedCommands);

enet_peer_reset (currentPeer);
}

return host;
}
12 changes: 12 additions & 0 deletions bilayer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef BILAYER_H
#define BILAYER_H

#include "enet/enet.h"

ENET_API ENetTransport enet_socket_create_transport(ENetSocketType, ENetSocket);

ENET_API ENetHost * enet_host_create_bilayer (ENetTransportType type, const ENetAddress *, size_t, size_t, enet_uint32, enet_uint32);
ENET_API ENetHost * enet_host_create_notp (const ENetAddress *, size_t, size_t, enet_uint32, enet_uint32);
ENET_API void enet_host_transport(ENetHost *host, const ENetTransport *transport);

#endif /* BILAYER_H */
26 changes: 24 additions & 2 deletions include/enet/enet.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ typedef struct _ENetAddress
{
enet_uint32 host;
enet_uint16 port;
uint64_t extra;
} ENetAddress;

/**
Expand Down Expand Up @@ -334,7 +335,28 @@ typedef enet_uint32 (ENET_CALLBACK * ENetChecksumCallback) (const ENetBuffer * b

/** Callback for intercepting received raw UDP packets. Should return 1 to intercept, 0 to ignore, or -1 to propagate an error. */
typedef int (ENET_CALLBACK * ENetInterceptCallback) (struct _ENetHost * host, struct _ENetEvent * event);


typedef enum _ENetTransportType
{
/** no event occurred within the specified time limit */
ENET_TRANSPORT_TYPE_NONE = 0,
ENET_TRANSPORT_TYPE_SOCKET = 1,
ENET_TRANSPORT_TYPE_CUSTOM = 2,
} ENetTransportType;

typedef struct _ENetTransport
{
ENetTransportType type;
void *context;
union {
ENetSocket socket;
void *nosocket;
} handle;

void (*send)();
void (*recv)();
} ENetTransport;

/** An ENet host for communicating with peers.
*
* No fields should be modified unless otherwise stated.
Expand All @@ -353,6 +375,7 @@ typedef int (ENET_CALLBACK * ENetInterceptCallback) (struct _ENetHost * host, st
*/
typedef struct _ENetHost
{
ENetTransport transport;
ENetSocket socket;
ENetAddress address; /**< Internet address of the host */
enet_uint32 incomingBandwidth; /**< downstream bandwidth of the host */
Expand Down Expand Up @@ -541,7 +564,6 @@ ENET_API ENetPacket * enet_packet_create (const void *, size_t, enet_uint32);
ENET_API void enet_packet_destroy (ENetPacket *);
ENET_API int enet_packet_resize (ENetPacket *, size_t);
ENET_API enet_uint32 enet_crc32 (const ENetBuffer *, size_t);

ENET_API ENetHost * enet_host_create (const ENetAddress *, size_t, size_t, enet_uint32, enet_uint32);
ENET_API void enet_host_destroy (ENetHost *);
ENET_API ENetPeer * enet_host_connect (ENetHost *, const ENetAddress *, size_t, enet_uint32);
Expand Down