wanbook.tmpl 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
  4. <book id="WANGuide">
  5. <bookinfo>
  6. <title>Synchronous PPP and Cisco HDLC Programming Guide</title>
  7. <authorgroup>
  8. <author>
  9. <firstname>Alan</firstname>
  10. <surname>Cox</surname>
  11. <affiliation>
  12. <address>
  13. <email>alan@redhat.com</email>
  14. </address>
  15. </affiliation>
  16. </author>
  17. </authorgroup>
  18. <copyright>
  19. <year>2000</year>
  20. <holder>Alan Cox</holder>
  21. </copyright>
  22. <legalnotice>
  23. <para>
  24. This documentation is free software; you can redistribute
  25. it and/or modify it under the terms of the GNU General Public
  26. License as published by the Free Software Foundation; either
  27. version 2 of the License, or (at your option) any later
  28. version.
  29. </para>
  30. <para>
  31. This program is distributed in the hope that it will be
  32. useful, but WITHOUT ANY WARRANTY; without even the implied
  33. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34. See the GNU General Public License for more details.
  35. </para>
  36. <para>
  37. You should have received a copy of the GNU General Public
  38. License along with this program; if not, write to the Free
  39. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  40. MA 02111-1307 USA
  41. </para>
  42. <para>
  43. For more details see the file COPYING in the source
  44. distribution of Linux.
  45. </para>
  46. </legalnotice>
  47. </bookinfo>
  48. <toc></toc>
  49. <chapter id="intro">
  50. <title>Introduction</title>
  51. <para>
  52. The syncppp drivers in Linux provide a fairly complete
  53. implementation of Cisco HDLC and a minimal implementation of
  54. PPP. The longer term goal is to switch the PPP layer to the
  55. generic PPP interface that is new in Linux 2.3.x. The API should
  56. remain unchanged when this is done, but support will then be
  57. available for IPX, compression and other PPP features
  58. </para>
  59. </chapter>
  60. <chapter id="bugs">
  61. <title>Known Bugs And Assumptions</title>
  62. <para>
  63. <variablelist>
  64. <varlistentry><term>PPP is minimal</term>
  65. <listitem>
  66. <para>
  67. The current PPP implementation is very basic, although sufficient
  68. for most wan usages.
  69. </para>
  70. </listitem></varlistentry>
  71. <varlistentry><term>Cisco HDLC Quirks</term>
  72. <listitem>
  73. <para>
  74. Currently we do not end all packets with the correct Cisco multicast
  75. or unicast flags. Nothing appears to mind too much but this should
  76. be corrected.
  77. </para>
  78. </listitem></varlistentry>
  79. </variablelist>
  80. </para>
  81. </chapter>
  82. <chapter id="pubfunctions">
  83. <title>Public Functions Provided</title>
  84. !Edrivers/net/wan/syncppp.c
  85. </chapter>
  86. </book>