DhcpBootpFlag.cs 133 B

12345678910
  1. using System;
  2. namespace DhcpServer
  3. {
  4. [Flags]
  5. public enum DhcpBootpFlag : ushort
  6. {
  7. Broadcast = 1 << 15
  8. }
  9. }