README 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. =============================================================
  2. README / Sofia-SIP - RFC3261 compliant SIP User-Agent library
  3. =============================================================
  4. Introduction
  5. ------------
  6. Sofia-SIP is an open-source SIP User-Agent library, compliant
  7. with the IETF RFC3261 specification. It can be used as
  8. a building block for SIP client software for uses such as VoIP,
  9. IM, and many other real-time and person-to-person communication
  10. services. The primary target platform for Sofia-SIP is
  11. GNU/Linux. Sofia-SIP is based on a SIP stack developed at
  12. the Nokia Research Center. Sofia-SIP is licensed under the LGPL.
  13. Quick start
  14. -----------
  15. Sofia-SIP uses the GNU autotools, so building procedure
  16. is the usual:
  17. sh> sh autogen.sh (if building from darcs)
  18. sh> ./configure
  19. sh> make
  20. sh> make install
  21. See also 'docs/devel_platform_notes.txt' for notes on compiling
  22. Sofia-SIP in different environments.
  23. See the "options-client-example" (available using darcs at
  24. http://sofia-sip.org/repos/options-client-example/ or with CVS as
  25. a module in Sofia-SIP CVS tree) for an example of a small app that
  26. is utilizing Sofia-SIP, and specifically the libsofia-sip-ua
  27. library component.
  28. There are also multiple example clients under
  29. the "sofia-sip/utils" directory:
  30. - sip-options, query using SIP OPTIONS method
  31. - sip-date, SIP date printer/parser
  32. The Sofia-SIP su submodule also provides some small utilities:
  33. - addrinfo (libsofia-sip-ua/su), resolve host names
  34. - localinfo (libsofia-sip-ua/su), prints information about
  35. local network interfaces
  36. References
  37. ----------
  38. Project website:
  39. - http://sofia-sip.sourceforge.net
  40. - http://www.sourceforge.net/projects/sofia-sip
  41. Mailing list:
  42. - http://sourceforge.net/mail/?group_id=143636
  43. Version control repositories:
  44. - see the project website (link above)
  45. Licensing
  46. ---------
  47. Sofia-SIP is licensed under terms of the GNU LGPL.
  48. See the file "COPYING" for more information.