Private
Public Access
1
0

Switch to statically linking CocoaHTTPServer

This commit is contained in:
2025-06-13 13:35:42 -07:00
parent 78eb946109
commit 7352efbcfd
9 changed files with 18 additions and 54 deletions

View File

@@ -14,7 +14,7 @@
#import "MBIMUpdateQueue.h"
#import "hooking.h"
#import <CocoaHTTPServer/HTTPServer.h>
#import "HTTPServer.h"
#import "IMCore_ClassDump.h"
#import "IMFoundation_ClassDump.h"

View File

@@ -6,7 +6,7 @@
// Copyright © 2018 James Magahern. All rights reserved.
//
#import <CocoaHTTPServer/HTTPServer.h>
#import "HTTPServer.h"
NS_ASSUME_NONNULL_BEGIN

View File

@@ -6,7 +6,7 @@
// Copyright © 2018 James Magahern. All rights reserved.
//
#import <CocoaHTTPServer/HTTPConnection.h>
#import "HTTPConnection.h"
@interface MBIMHTTPConnection : HTTPConnection

View File

@@ -16,7 +16,7 @@
#import "MBIMURLUtilities.h"
#import <Security/Security.h>
#import <CocoaHTTPServer/HTTPMessage.h>
#import "HTTPMessage.h"
@interface HTTPConnection (/* INTERNAL */)
- (BOOL)isAuthenticated;

View File

@@ -6,7 +6,7 @@
// Copyright © 2025 James Magahern. All rights reserved.
//
#import <CocoaHTTPServer/WebSocket.h>
#import "WebSocket.h"
NS_ASSUME_NONNULL_BEGIN

View File

@@ -13,9 +13,9 @@
#import "MBIMURLUtilities.h"
#import "MBIMPingPongWebSocket.h"
#import <CocoaHTTPServer/GCDAsyncSocket.h>
#import <CocoaHTTPServer/HTTPMessage.h>
#import <CocoaHTTPServer/WebSocket.h>
#import "GCDAsyncSocket.h"
#import "HTTPMessage.h"
#import "WebSocket.h"
static const NSUInteger kUpdateItemsCullingLength = 100;

View File

@@ -7,9 +7,9 @@
//
#import <Foundation/Foundation.h>
#import <CocoaHTTPServer/HTTPMessage.h>
#import <CocoaHTTPServer/HTTPResponse.h>
#import <CocoaHTTPServer/HTTPErrorResponse.h>
#import "HTTPMessage.h"
#import "HTTPResponse.h"
#import "HTTPErrorResponse.h"
#import "MBIMJSONDataResponse.h"

View File

@@ -7,7 +7,7 @@
//
#import <Foundation/Foundation.h>
#import <CocoaHTTPServer/HTTPDataResponse.h>
#import "HTTPDataResponse.h"
NS_ASSUME_NONNULL_BEGIN