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.

13 lines
421 B

  1. --- a/mDNSShared/PlatformCommon.c
  2. +++ b/mDNSShared/PlatformCommon.c
  3. @@ -43,6 +43,10 @@
  4. typedef unsigned int socklen_t;
  5. #endif
  6. +#ifndef TCP_NOTSENT_LOWAT
  7. +#define TCP_NOTSENT_LOWAT 25
  8. +#endif
  9. +
  10. #if MDNS_MALLOC_DEBUGGING
  11. // We ONLY want this for malloc debugging--on a running production system we want to deal with
  12. // malloc failures, not just die. There is a small performance penalty for enabling these options