webRtcPingManager.h 405 B

123456789101112131415161718192021222324
  1. //
  2. // webRtcPingManager.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/12/24.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface webRtcPingManager : NSObject
  10. /** 实例化对象(单例) */
  11. + (instancetype)shareManager;
  12. /**自定义字段 是否为局域网*/
  13. @property (nonatomic,assign) bool isPingOk; //
  14. //开始
  15. - (void)startPingFun;
  16. @end
  17. NS_ASSUME_NONNULL_END