home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / share / doc / smm / 15.net / 0.t next >
Encoding:
Text File  |  1991-04-17  |  4.6 KB  |  182 lines

  1. .\" Copyright (c) 1983, 1986 The Regents of the University of California.
  2. .\" All rights reserved.
  3. .\"
  4. .\" Redistribution and use in source and binary forms, with or without
  5. .\" modification, are permitted provided that the following conditions
  6. .\" are met:
  7. .\" 1. Redistributions of source code must retain the above copyright
  8. .\"    notice, this list of conditions and the following disclaimer.
  9. .\" 2. Redistributions in binary form must reproduce the above copyright
  10. .\"    notice, this list of conditions and the following disclaimer in the
  11. .\"    documentation and/or other materials provided with the distribution.
  12. .\" 3. All advertising materials mentioning features or use of this software
  13. .\"    must display the following acknowledgement:
  14. .\"    This product includes software developed by the University of
  15. .\"    California, Berkeley and its contributors.
  16. .\" 4. Neither the name of the University nor the names of its contributors
  17. .\"    may be used to endorse or promote products derived from this software
  18. .\"    without specific prior written permission.
  19. .\"
  20. .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. .\" SUCH DAMAGE.
  31. .\"
  32. .\"    @(#)0.t    6.5 (Berkeley) 4/17/91
  33. .\"
  34. .if n .ND
  35. .TL
  36. Networking Implementation Notes
  37. .br
  38. 4.3BSD Edition
  39. .AU
  40. Samuel J. Leffler, William N. Joy, Robert S. Fabry, and Michael J. Karels
  41. .AI
  42. Computer Systems Research Group
  43. Computer Science Division
  44. Department of Electrical Engineering and Computer Science
  45. University of California, Berkeley
  46. Berkeley, CA  94720
  47. .AB
  48. .FS
  49. * UNIX is a trademark of Bell Laboratories.
  50. .FE
  51. This report describes the internal structure of the
  52. networking facilities developed for the 4.3BSD version
  53. of the UNIX* operating system
  54. for the VAX\(dg.  These facilities
  55. .FS
  56. \(dg DEC, VAX, DECnet, and UNIBUS are trademarks of
  57. Digital Equipment Corporation.
  58. .FE
  59. are based on several central abstractions which
  60. structure the external (user) view of network communication
  61. as well as the internal (system) implementation.
  62. .PP
  63. The report documents the internal structure of the networking system.
  64. The ``Berkeley Software Architecture Manual, 4.3BSD Edition'' (PS1:6)
  65. provides a description of the user interface to the networking facilities.
  66. .sp
  67. .LP
  68. Revised April 17, 1991
  69. .AE
  70. .LP
  71. .\".de PT
  72. .\".lt \\n(LLu
  73. .\".pc %
  74. .\".nr PN \\n%
  75. .\".tl '\\*(LH'\\*(CH'\\*(RH'
  76. .\".lt \\n(.lu
  77. .\"..
  78. .\".ds RH Contents
  79. .OH 'Networking Implementation Notes''SMM:15-%'
  80. .EH 'SMM:15-%''Networking Implementation Notes'
  81. .bp
  82. .ce
  83. .B "TABLE OF CONTENTS"
  84. .LP
  85. .sp 1
  86. .nf
  87. .B "1.  Introduction"
  88. .LP
  89. .sp .5v
  90. .nf
  91. .B "2.  Overview"
  92. .LP
  93. .sp .5v
  94. .nf
  95. .B "3.  Goals
  96. .LP
  97. .sp .5v
  98. .nf
  99. .B "4.  Internal address representation"
  100. .LP
  101. .sp .5v
  102. .nf
  103. .B "5.  Memory management"
  104. .LP
  105. .sp .5v
  106. .nf
  107. .B "6.  Internal layering
  108. 6.1.    Socket layer
  109. 6.1.1.    Socket state
  110. 6.1.2.    Socket data queues
  111. 6.1.3.    Socket connection queuing
  112. 6.2.    Protocol layer(s)
  113. 6.3.    Network-interface layer
  114. 6.3.1.    UNIBUS interfaces
  115. .LP
  116. .sp .5v
  117. .nf
  118. .B "7.  Socket/protocol interface"
  119. .LP
  120. .sp .5v
  121. .nf
  122. .B "8.  Protocol/protocol interface"
  123. 8.1.     pr_output
  124. 8.2.     pr_input
  125. 8.3.     pr_ctlinput
  126. 8.4.     pr_ctloutput
  127. .LP
  128. .sp .5v
  129. .nf
  130. .B "9.  Protocol/network-interface interface"
  131. 9.1.     Packet transmission
  132. 9.2.     Packet reception
  133. .LP
  134. .sp .5v
  135. .nf
  136. .B "10. Gateways and routing issues
  137. 10.1.     Routing tables
  138. 10.2.     Routing table interface
  139. 10.3.     User level routing policies
  140. .LP
  141. .sp .5v
  142. .nf
  143. .B "11. Raw sockets"
  144. 11.1.     Control blocks
  145. 11.2.     Input processing
  146. 11.3.     Output processing
  147. .LP
  148. .sp .5v
  149. .nf
  150. .B "12. Buffering and congestion control"
  151. 12.1.     Memory management
  152. 12.2.     Protocol buffering policies
  153. 12.3.     Queue limiting
  154. 12.4.     Packet forwarding
  155. .LP
  156. .sp .5v
  157. .nf
  158. .B "13. Out of band data"
  159. .LP
  160. .sp .5v
  161. .nf
  162. .B "14. Trailer protocols"
  163. .LP
  164. .sp .5v
  165. .nf
  166. .B Acknowledgements
  167. .LP
  168. .sp .5v
  169. .nf
  170. .B References
  171. .bp
  172. .de _d
  173. .if t .ta .6i 2.1i 2.6i
  174. .\" 2.94 went to 2.6, 3.64 to 3.30
  175. .if n .ta .84i 2.6i 3.30i
  176. ..
  177. .de _f
  178. .if t .ta .5i 1.25i 2.5i
  179. .\" 3.5i went to 3.8i
  180. .if n .ta .7i 1.75i 3.8i
  181. ..
  182.