ipu的trunk版ios客户端工程

IPULogReport.h 631B

    // // IPULogReport.h // IPUMobile // // Created by 秋林 on 2019/1/15. // Copyright © 2019 Asiainfo. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN @interface IPULogReport : NSObject + (instancetype) getInstance; /* 设置消息接收的主机、端口 */ - (void) setHost:(NSString *)host port:(NSString *)port; /* 设置消息发送的超时时间 */ - (void) setTimeout:(NSTimeInterval)timeout; /* 发送消息 */ - (void) sendMsg:(NSString *)msg; /* 监听指定端口,接服务端广播 */ - (BOOL) listen:(NSString *)port error:(NSError **)err; @end NS_ASSUME_NONNULL_END