mirror of
https://github.com/darlinghq/darling-cfnetwork.git
synced 2024-11-23 11:49:45 +00:00
032a32e5b4
This is a stub for a class and a declaration for some private NSURL stuff I gotta say, Apple really has a jumble of CF and NS stuff
25 lines
576 B
Objective-C
25 lines
576 B
Objective-C
#ifndef _CFNSURLCONNECTION_H_
|
|
#define _CFNSURLCONNECTION_H_
|
|
|
|
// not sure what's going on here
|
|
// `SecCAIssuerRequest.m` imports this file
|
|
// let's just include the main header for now
|
|
#include <CFNetwork/CFNetwork.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSURLSessionTaskMetrics : NSObject
|
|
|
|
@property (readonly, copy) NSDateInterval* taskInterval;
|
|
|
|
@end
|
|
|
|
@interface NSURLSessionConfiguration (CFNSPrivateStuff)
|
|
|
|
@property (readwrite) NSData* _sourceApplicationAuditTokenData;
|
|
@property (readwrite) BOOL _requiresPowerPluggedIn;
|
|
|
|
@end
|
|
|
|
#endif // _CFNSURLCONNECTION_H_
|