ointerface.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <chapter id='ointerface'>
  2. <title>
  3. Class ointerface
  4. </title>
  5. <section id="ointerface-class" >
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class stores information about a named host Ethernet interface. Instantiating it with either the interface index or the interface name causes it to collect the remaining information about the interfaces and make it available to your application. Once instantiated, you can access the interface <link linkend='ointerface-Index'>Index</link>, <link linkend='ointerface-Name'>Name</link>, <link linkend='ointerface-Description'>Description</link>, <link linkend='ointerface-HardwareAddress'>HardwareAddress</link> and <link linkend='ointerface-InternetAddress'>InternetAddress</link> properties.
  11. </para>
  12. <para>
  13. This class is declared in <ulink url='ointerface.hpp.html'>ointerface.hpp</ulink> and defined in <ulink url='ointerface.cpp.html'>ointerface.cpp</ulink>. Application developers can access a collection of <link linkend='ointerface'>ointerface</link> objects via the <link linkend='ointerfaces'>ointerfaces</link> class.
  14. </para>
  15. <section id="ointerface-inheritance">
  16. <title>
  17. Inheritance
  18. </title>
  19. <para>
  20. None.
  21. </para>
  22. </section>
  23. <section id="ointerface-dependence">
  24. <title>
  25. Dependence
  26. </title>
  27. <para>
  28. This class depends on static classes <link linkend='omemory'>omemory</link> and <link linkend='oerror'>oerror</link>.
  29. </para>
  30. <para>
  31. This class references interface adapter related constants defined in header file <filename>net/if.h</filename> which should be available on most systems. An abridged version is provided in <ulink url='if.h.html'>VisualStudioNET/include/net/if.h</ulink> for systems that may not have it.
  32. </para>
  33. <para>
  34. This class references Ethernet related constants defined in header file <filename>net/ethernet.h</filename> which should be available on most systems. An abridged version is provided in <ulink url='ethernet.h.html'>VisualStudioNET/include/net/ethernet.h</ulink> for systems that may not have it.
  35. </para>
  36. </section>
  37. </section>
  38. <section id="ointerface-properties">
  39. <title>
  40. Properties
  41. </title>
  42. <para>
  43. </para>
  44. <section id="ointerface-Description">
  45. <title>
  46. ointerface::Description
  47. </title>
  48. <funcsynopsis>
  49. <funcprototype>
  50. <funcdef>char const * <function>Description</function></funcdef>
  51. <paramdef>void</paramdef>
  52. </funcprototype>
  53. </funcsynopsis>
  54. <para>
  55. Return the interface description string. On Linux, this property defaults to the interface <link linkend='ointerface-Name'>Name</link> property. On Windows, this property contains the hardware manufacturer name string, such as <quote>Realtek RTL83 Ethernet Adapter (Microsoft Packet Scheduler)</quote>. On instantiation, this property contains an empty string.
  56. </para>
  57. </section>
  58. <section id="ointerface-Index">
  59. <title>
  60. ointerface::Index
  61. </title>
  62. <funcsynopsis>
  63. <funcprototype>
  64. <funcdef>unsigned <function>Index</function></funcdef>
  65. <paramdef>void</paramdef>
  66. </funcprototype>
  67. </funcsynopsis>
  68. <para>
  69. Return the interface index. This is the number assigned to the interface by the operating system when it was discovered. It should not be confused with the <link linkend='ointerfaces-Index'>ointerfaces::Index</link> property. An index of <constant>0</constant> indicates that the interface is invalid. On instantiation, this property contains <constant>0</constant>.
  70. </para>
  71. </section>
  72. <section id="ointerface-Name">
  73. <title>
  74. ointerface::Name
  75. </title>
  76. <funcsynopsis>
  77. <funcprototype>
  78. <funcdef>char const * <function>Name</function></funcdef>
  79. <paramdef>void</paramdef>
  80. </funcprototype>
  81. </funcsynopsis>
  82. <para>
  83. Return the interface name string. On Linux, name strings are short, as in <quote>eth0</quote>, and do exceed <constant>IF_NAMESIZE</constant> characters. On Windows, name strings are longer, as in <quote>\Device\NPF_{4CFAABD5-C929-4942-914B-BDFE72B13611}</quote>, but do not exceed <constant>255</constant> characters. On instantiation, this property contains an empty string.
  84. </para>
  85. </section>
  86. <section id="ointerface-HardwareAddress">
  87. <title>
  88. ointerface::HardwareAddress
  89. </title>
  90. <funcsynopsis>
  91. <funcprototype>
  92. <funcdef>uint8_t const * <function>HardwareAddress</function></funcdef>
  93. <paramdef>void</paramdef>
  94. </funcprototype>
  95. </funcsynopsis>
  96. <para>
  97. Return the location of the interface hardware address. The hardware address is <constant>ETHER_ADDR_LEN</constant> binary bytes long. The hardware address is the same as the physical address, Ethernet address and <acronym>MAC</acronym> address.The hardware address location remains valid for the life of the object but the content may change if the <link linkend='ointerface-Index'>Index</link> or <link linkend='ointerface-Name'>Name</link> property changes. On instantiation, this property contains zeros.
  98. </para>
  99. </section>
  100. <section id="ointerface-HardwareAddressString">
  101. <title>
  102. ointerface::HardwareAddressString
  103. </title>
  104. <funcsynopsis>
  105. <funcprototype>
  106. <funcdef>char const * <function>HardwareAddressString</function></funcdef>
  107. <paramdef>void</paramdef>
  108. </funcprototype>
  109. </funcsynopsis>
  110. <para>
  111. Return the location of the interface hardware address as a string. The string is <constant>18</constant> characters long including the <constant>NUL</constant> terminator, as in <quote>00:B0:52:BA:BE:01</quote>. This property may be used anywhere that a <constant>NUL</constant> terminated string is permitted. The string address remains valid for the life of the object but the content may change if the <link linkend='ointerface-Index'>Index</link> or <link linkend='ointerface-Name'>Name</link> property is changed.
  112. </para>
  113. </section>
  114. <section id="ointerface-InternetAddress">
  115. <title>
  116. ointerface::InternetAddress
  117. </title>
  118. <funcsynopsis>
  119. <funcprototype>
  120. <funcdef>uint8_t const * <function>InternetAddress</function></funcdef>
  121. <paramdef>void</paramdef>
  122. </funcprototype>
  123. </funcsynopsis>
  124. <para>
  125. Return the location of the interface internet address. The internet address is <constant>4</constant> binary bytes long. The internet address is the same as the <acronym>IPv4</acronym> address. The internet address location remains valid for the life of the object but the content may change if the <link linkend='ointerface-Index'>Index</link> or <link linkend='ointerface-Name'>Name</link> property is changed. On instantiation, this property contains zeros.
  126. </para>
  127. </section>
  128. <section id="ointerface-InternetAddressString">
  129. <title>
  130. ointerface::InternetAddressString
  131. </title>
  132. <funcsynopsis>
  133. <funcprototype>
  134. <funcdef>char const * <function>InternetAddressString</function></funcdef>
  135. <paramdef>void</paramdef>
  136. </funcprototype>
  137. </funcsynopsis>
  138. <para>
  139. Return the location of the interface internet address string. The string is <constant>16</constant> characters long including the <constant>NUL</constant> terminator, as in <quote>192.168.099.001</quote>. This property may be used anywhere that a <constant>NUL</constant> terminated string is permitted. The string address remains valid for the life of the object but the content may change if the <link linkend='ointerface-Index'>Index</link> or <link linkend='ointerface-Name'>Name</link> property changes.
  140. </para>
  141. </section>
  142. </section>
  143. <section id="ointerface-methods">
  144. <title>
  145. Methods
  146. </title>
  147. <para>
  148. </para>
  149. <section id="ointerface-ExportHardwareAddress">
  150. <title>
  151. ointerface::ExportHardwareAddress
  152. </title>
  153. <funcsynopsis>
  154. <funcprototype>
  155. <funcdef>ointerface &amp; <function>ExportHardwareAddress</function></funcdef>
  156. <paramdef>void * <parameter>memory</parameter></paramdef>
  157. </funcprototype>
  158. </funcsynopsis>
  159. <para>
  160. Copy the interface hardware address to external memory in binary format. The hardware address is <constant>ETHER_ADDR_LEN</constant> bytes so length argument is needed.
  161. </para>
  162. </section>
  163. <section id="ointerface-ExportInternetAddress">
  164. <title>
  165. ointerface::ExportInternetAddress
  166. </title>
  167. <funcsynopsis>
  168. <funcprototype>
  169. <funcdef>ointerface &amp; <function>ExportInternetAddress</function></funcdef>
  170. <paramdef>void * <parameter>memory</parameter></paramdef>
  171. </funcprototype>
  172. </funcsynopsis>
  173. <para>
  174. Copy the interface internet address to external memory in binary format. The internet address is <constant>4</constant> bytes so length argument is needed.
  175. </para>
  176. </section>
  177. <section id="ointerface-Print">
  178. <title>
  179. Print
  180. </title>
  181. <funcsynopsis>
  182. <funcprototype>
  183. <funcdef>ointerface &amp; <function>Print</function></funcdef>
  184. <paramdef>void</paramdef>
  185. </funcprototype>
  186. </funcsynopsis>
  187. <para>
  188. Print instance properties on <varname>stdout</varname> in human-readable format. Output conisists of the index, hardware address string, internet address string, name and description properties, in that order.
  189. </para>
  190. <example>
  191. <title>
  192. Print ointerface properties on stdout
  193. </title>
  194. <screen>
  195. 2 00:0F:EA:4B:98:CB 192.168.170.179 eth3 eth3
  196. </screen>
  197. <para>
  198. This is typical output on a <productname>Linux</productname> or <productname>Mac OSX</productname> system. The device name (field 4) is short and the description (field 5) is the same as the device name.
  199. </para>
  200. <screen>
  201. 1 00:0E:2E:03:5F:B8 192.168.099.033 \Device\NPF_{4CFAABD5-C929-4942-914B-BDFE72B13611} Realtek RTL8139 Family Fast Eth
  202. </screen>
  203. <para>
  204. This is typical output on a Microsoft <productname>Windows</productname> system. The device name (field 4) is long and the description (field 5) is not the same as device name.
  205. </para>
  206. </example>
  207. </section>
  208. <section id="ointerface-SetDescription">
  209. <title>
  210. SetDescription
  211. </title>
  212. <funcsynopsis>
  213. <funcprototype>
  214. <funcdef>ointerface &amp; <function>SetDescription</function></funcdef>
  215. <paramdef>char const * <parameter>string</parameter></paramdef>
  216. </funcprototype>
  217. </funcsynopsis>
  218. <para>
  219. Copy the interface text description from external memory. The <varname>string</varname> argument is truncated to <constant>255</constant> characters. The text description will change whenever the <link linkend='ointerface-Index'>Index</link> or <link linkend='ointerface-Name'>Name</link> properties change but changing the text description change the other properties.
  220. </para>
  221. </section>
  222. </section>
  223. <section id="ointerface-Constructors">
  224. <title>
  225. Constructors
  226. </title>
  227. <para>
  228. This class must be instantiated using either an interface number or interface name.
  229. </para>
  230. <funcsynopsis>
  231. <funcprototype>
  232. <funcdef><function>ointerface</function></funcdef>
  233. <paramdef>unsigned <parameter>index</parameter></paramdef>
  234. </funcprototype>
  235. </funcsynopsis>
  236. <para>
  237. Instantiate the class as the numbered interface. Terminate the program if the numbered interface does not exist.
  238. </para>
  239. <funcsynopsis>
  240. <funcprototype>
  241. <funcdef><function>ointerface</function></funcdef>
  242. <paramdef>char const * <parameter>name</parameter></paramdef>
  243. </funcprototype>
  244. </funcsynopsis>
  245. <para>
  246. Instantiate the class as the named interface. Terminate the program if the named interfaces does not exist.
  247. </para>
  248. </section>
  249. </chapter>