ENet 1.3.6.3

dotnet add package ENet --version 1.3.6.3
NuGet\Install-Package ENet -Version 1.3.6.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ENet" Version="1.3.6.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ENet --version 1.3.6.3
#r "nuget: ENet, 1.3.6.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ENet as a Cake Addin
#addin nuget:?package=ENet&version=1.3.6.3

// Install ENet as a Cake Tool
#tool nuget:?package=ENet&version=1.3.6.3

ENet supports multiple in-order streams of data over UDP, and allows you to decide on reliability on a per-packet basis. Both client-server and peer-to-peer architectures are supported.
     
ENet for C# wraps the C-language ENet networking library. 32- and 64-bit Windows and MacOS DLLs are included. On Linux, install the libenet1a package (1.3.3 or newer).

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.6.3 375 4/24/2013
1.3.6.2 57 2/27/2013
1.3.6.1 52 2/24/2013
1.3.6 53 2/23/2013

1.3.6.3 (April 24, 2013):
MacOS support! A universal binary, libenet.dylib, is included.
 
Linux support! Specifically...
libenet.so.1 (package libenet1a) is now searched for, in addition to the Windows DLLs.
The earlier ENet 1.3.3 should work with this version, except for Peer's SetPingInterval and SetTimeouts methods.
Implemented a workaround to ENet 1.3.6 EINTR (Unix signals) behavior.
Implemented a workaround to Mono P/Invoke bug 11899.
Special thanks to Random for testing this for me.

1.3.6.2 (February 27, 2013):
Added Packet.Freed event.
Added Packet.GetUserData/SetUserData methods.
Added another Packet.Initialize overload.
Added Packet.ReferenceCount property.
Added Peer.Host property.
Implemented IList<byte> on Packet. Mainly this is useful for the indexer.

1.3.6.1 February 24, 2013:
64-bit support!
It is no longer necessary to call Library.Initialize.
 
1.3.6 February 23, 2013:
Updated the binding to support ENet 1.3.6.
Added SetPingInterval and SetTimeouts methods to Peer.
Added locking around Library.Initialize/Deinitialize.
Miscellaneous minor improvements.