NBNSType.java 347 B

1234567891011121314
  1. package de.tudarmstadt.informatik.hostage.protocol.smbutils;
  2. /**
  3. * NetBios Name Service types.
  4. * @author Wulf Pfeiffer.
  5. */
  6. public class NBNSType {
  7. public static final int REGISTRATION_UNIQUE = 0;
  8. public static final int REGISTRATION_GROUP = 1;
  9. public static final int NAME_QUERY = 2;
  10. public static final int REGISTRATION_MSBROWSE = 3;
  11. }