From: Amos Jeffries Date: Fri, 2 Nov 2012 11:20:14 +0000 (-0600) Subject: Add SEND_BH macro to helper API definitions X-Git-Tag: SQUID_3_4_0_1~532 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f073f56cd9245475e12263e27bded8dd1745aa9d;p=thirdparty%2Fsquid.git Add SEND_BH macro to helper API definitions --- diff --git a/helpers/defines.h b/helpers/defines.h index 57823acf80..8e50fda849 100644 --- a/helpers/defines.h +++ b/helpers/defines.h @@ -14,4 +14,7 @@ /* send ERR result to Squid with a string parameter. */ #define SEND_ERR(x) fprintf(stdout, "ERR %s\n",x) +/* send ERR result to Squid with a string parameter. */ +#define SEND_BH(x) fprintf(stdout, "BH %s\n",x) + #endif /* __SQUID_HELPERS_DEFINES_H */