/// <summary>
 ///		Create a new arp sender class.
 /// </summary>
 /// <param name="driver">
 ///		The NDIS protocol driver to use. The driver should already be
 ///		started up and bound to a device and be ready for use.
 ///	</param>
 /// <exception cref="Exception">
 ///		If the driver fails to open, then an exception is raised.
 ///	</exception>
 public ArpSender(NdisProtocolDriverInterface driver)
 {
     m_driver = driver;
 }
Beispiel #2
0
 /// <summary>
 ///		Create a new arp sender class.
 /// </summary>
 /// <param name="driver">
 ///		The NDIS protocol driver to use. The driver should already be
 ///		started up and bound to a device and be ready for use.
 ///	</param>
 /// <exception cref="Exception">
 ///		If the driver fails to open, then an exception is raised.
 ///	</exception>
 public ArpSender(NdisProtocolDriverInterface driver)
 {
     m_driver = driver;
 }