mainpage.dox 1.9 KB

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