From 21d3023a9b7b6aff68c1170e345951396b1c6cfd Mon Sep 17 00:00:00 2001 From: 单军华 Date: Tue, 31 Jul 2018 13:35:21 +0800 Subject: [PATCH] no message --- screendisplay/Pods/ASIHTTPRequest/Classes/ASIHTTPRequestConfig.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/ASIHTTPRequest/Classes/ASIHTTPRequestConfig.h b/screendisplay/Pods/ASIHTTPRequest/Classes/ASIHTTPRequestConfig.h new file mode 100755 index 0000000..3f6c587 --- /dev/null +++ b/screendisplay/Pods/ASIHTTPRequest/Classes/ASIHTTPRequestConfig.h @@ -0,0 +1,43 @@ +// +// ASIHTTPRequestConfig.h +// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest +// +// Created by Ben Copsey on 14/12/2009. +// Copyright 2009 All-Seeing Interactive. All rights reserved. +// + + +// ====== +// Debug output configuration options +// ====== + +// If defined will use the specified function for debug logging +// Otherwise use NSLog +#ifndef ASI_DEBUG_LOG + #define ASI_DEBUG_LOG NSLog +#endif + +// When set to 1 ASIHTTPRequests will print information about what a request is doing +#ifndef DEBUG_REQUEST_STATUS + #define DEBUG_REQUEST_STATUS 0 +#endif + +// When set to 1, ASIFormDataRequests will print information about the request body to the console +#ifndef DEBUG_FORM_DATA_REQUEST + #define DEBUG_FORM_DATA_REQUEST 0 +#endif + +// When set to 1, ASIHTTPRequests will print information about bandwidth throttling to the console +#ifndef DEBUG_THROTTLING + #define DEBUG_THROTTLING 0 +#endif + +// When set to 1, ASIHTTPRequests will print information about persistent connections to the console +#ifndef DEBUG_PERSISTENT_CONNECTIONS + #define DEBUG_PERSISTENT_CONNECTIONS 0 +#endif + +// When set to 1, ASIHTTPRequests will print information about HTTP authentication (Basic, Digest or NTLM) to the console +#ifndef DEBUG_HTTP_AUTHENTICATION + #define DEBUG_HTTP_AUTHENTICATION 0 +#endif -- Gitblit v1.8.0