21 lines
338 B
Objective-C
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 */
|