NetBiosSuffix.cs 501 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SMBLibrary.NetBios
  5. {
  6. /// <summary>
  7. /// 16th character suffix for netbios name.
  8. /// see http://support.microsoft.com/kb/163409/en-us
  9. /// </summary>
  10. public enum NetBiosSuffix : byte
  11. {
  12. WorkstationService = 0x00,
  13. MessengerService = 0x03,
  14. DomainMasterBrowser = 0x1B,
  15. MasterBrowser = 0x1D,
  16. BrowserServiceElections = 0x1E,
  17. FileServiceService = 0x20,
  18. }
  19. }