Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
556 B

  1. /***************************************************************************
  2. *
  3. * tdtcp.h
  4. *
  5. * This module contains private Transport Driver defines and structures
  6. *
  7. * Copyright 1998, Microsoft
  8. *
  9. *
  10. ****************************************************************************/
  11. #define htons(x) ((((x) >> 8) & 0x00FF) | (((x) << 8) & 0xFF00))
  12. // it seems that ntohs is the same as above since ntohs(htons(x)) = x and htnos(htons(x)) = x
  13. #define ntohs(x) htons(x)
  14. #define CITRIX_TCP_PORT 1494 // Offical IANA assigned ICA Port number