ios-hooks/AppRunMan/server/XUDPServer.h
2025-11-05 10:04:03 +08:00

21 lines
338 B
Objective-C

//
// XUDPServer.h
// xcmd
//
// Created by mac on 2025/2/17.
//
#ifndef XUDPServer_h
#define XUDPServer_h
#import <Foundation/Foundation.h>
#import "CocoaAsyncSocket.h"
@interface XUDPServer : NSObject<GCDAsyncUdpSocketDelegate>
+(instancetype)sharedInstance;
- (void) start;
- (uint16_t) udp_port;
@end
#endif /* XUDPServer_h */