Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/enet-1.1/docs/mainpage.dox @ 13

Last change on this file since 13 was 13, checked in by landauf, 16 years ago

added enet

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1/** @mainpage enet
2 <center>http://enet.bespin.org</center>
3 <hr>
4
5ENet's purpose is to provide a relatively thin, simple and robust
6network communication layer on top of UDP (User Datagram Protocol).
7The primary feature it provides is optional reliable, in-order
8delivery of packets.
9
10ENet is NOT intended to be a general purpose high level networking
11library that handles authentication, lobbying, server discovery,
12compression, encryption and other high level, often application level
13or dependent tasks.
14
15@ref Features
16
17@ref SourceDistro
18
19@ref Installation
20
21@ref Tutorial
22
23@ref MailingList
24
25@ref FAQ
26
27@ref License
28
29 */
30
31/**
32@page SourceDistro Source Distribution
33
34You can retrieve the source to ENet by downloading it in either .tar.gz form
35or accessing the cvs distribution directly.
36
37The most recent stable release (1.1) can be downloaded <a href="http://enet.bespin.org/download/enet-1.1.tar.gz">here</a>.
38
39To access ENet via anonymous CVS, you must use the CVSROOT
40:pserver:anonymous\@bespin.org:/var/lib/cvs/enet with an empty
41password.
42
43@code
44        $ cvs -z3 -d :pserver:anonymous@bespin.org:/var/lib/cvs/enet login
45@endcode
46        Hit the return key when prompted for a password.
47@code
48        $ cvs -z3 -d :pserver:anonymous@bespin.org:/var/lib/cvs/enet co -l .
49        $ cvs -z3 co enet
50@endcode
51
52This will create a CVS directory in the current directory, and with
53the second command will proceed to check the enet module out of CVS.
54Any problems with CVS access or request for write access should be
55sent via email to @ref MailingList.
56
57*/
58
59/**
60@page MailingList ENet Mailing List
61
62The <a
63href="http://lists.cubik.org/mailman/listinfo/enet-discuss">
64enet-discuss</a> list is for discussion of ENet, including bug reports
65or feature requests.
66
67*/
Note: See TracBrowser for help on using the repository browser.