iOS web browser with a focus on security and privacy
at master 15 lines 269 B view raw
1/* 2 * Endless 3 * Copyright (c) 2014-2015 joshua stein <jcs@jcs.org> 4 * 5 * See LICENSE file for redistribution terms. 6 */ 7 8#import <Foundation/Foundation.h> 9 10@interface LocalNetworkChecker : NSObject 11 12+ (void)clearCache; 13+ (BOOL)isHostOnLocalNet:(NSString *)host; 14 15@end