
解决 macOS 10.12 下 PAC 模式下Safari 或 Twitter 客户端 tweetbot客户端不能FQ的问题 https://github.com/qiuyuzhou/ShadowsocksX-NG/issues/30 PS 手头没有 macOS 10.12 的机器,麻烦有的请帮忙测试一下 或者可以从 https://github.com/qinyuhang/ShadowsocksX-NG/tree/webserver 下载去 Xcode build 一下
102 lines
3.6 KiB
Objective-C
102 lines
3.6 KiB
Objective-C
/*
|
|
Copyright (c) 2012-2015, Pierre-Olivier Latour
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* The name of Pierre-Olivier Latour may not be used to endorse
|
|
or promote products derived from this software without specific
|
|
prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL PIERRE-OLIVIER LATOUR BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Converts a file extension to the corresponding MIME type.
|
|
* If there is no match, "application/octet-stream" is returned.
|
|
*/
|
|
NSString* GCDWebServerGetMimeTypeForExtension(NSString* extension);
|
|
|
|
/**
|
|
* Add percent-escapes to a string so it can be used in a URL.
|
|
* The legal characters ":@/?&=+" are also escaped to ensure compatibility
|
|
* with URL encoded forms and URL queries.
|
|
*/
|
|
NSString* GCDWebServerEscapeURLString(NSString* string);
|
|
|
|
/**
|
|
* Unescapes a URL percent-encoded string.
|
|
*/
|
|
NSString* GCDWebServerUnescapeURLString(NSString* string);
|
|
|
|
/**
|
|
* Extracts the unescaped names and values from an
|
|
* "application/x-www-form-urlencoded" form.
|
|
* http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
|
|
*/
|
|
NSDictionary* GCDWebServerParseURLEncodedForm(NSString* form);
|
|
|
|
/**
|
|
* On OS X, returns the IPv4 or IPv6 address as a string of the primary
|
|
* connected service or nil if not available.
|
|
*
|
|
* On iOS, returns the IPv4 or IPv6 address as a string of the WiFi
|
|
* interface if connected or nil otherwise.
|
|
*/
|
|
NSString* GCDWebServerGetPrimaryIPAddress(BOOL useIPv6);
|
|
|
|
/**
|
|
* Converts a date into a string using RFC822 formatting.
|
|
* https://tools.ietf.org/html/rfc822#section-5
|
|
* https://tools.ietf.org/html/rfc1123#section-5.2.14
|
|
*/
|
|
NSString* GCDWebServerFormatRFC822(NSDate* date);
|
|
|
|
/**
|
|
* Converts a RFC822 formatted string into a date.
|
|
* https://tools.ietf.org/html/rfc822#section-5
|
|
* https://tools.ietf.org/html/rfc1123#section-5.2.14
|
|
*
|
|
* @warning Timezones other than GMT are not supported by this function.
|
|
*/
|
|
NSDate* GCDWebServerParseRFC822(NSString* string);
|
|
|
|
/**
|
|
* Converts a date into a string using IOS 8601 formatting.
|
|
* http://tools.ietf.org/html/rfc3339#section-5.6
|
|
*/
|
|
NSString* GCDWebServerFormatISO8601(NSDate* date);
|
|
|
|
/**
|
|
* Converts a ISO 8601 formatted string into a date.
|
|
* http://tools.ietf.org/html/rfc3339#section-5.6
|
|
*
|
|
* @warning Only "calendar" variant is supported at this time and timezones
|
|
* other than GMT are not supported either.
|
|
*/
|
|
NSDate* GCDWebServerParseISO8601(NSString* string);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|