darling-cfnetwork/include/CFNetwork/CFNSURLConnection.h
Ariel Abreu 032a32e5b4
Add some CFNSURLConnection stuff
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
2020-08-27 22:26:18 -04:00

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_