webRtcManager+StatisticsReport.h 693 B

12345678910111213141516171819202122
  1. //
  2. // webRtcManager+StatisticsReport.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/9/10.
  6. //
  7. #import "webRtcManager.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface webRtcManager (StatisticsReport)
  10. // IsChannel:是否是P2P通道
  11. - (void)reportWebRtcRePoportTypeIsChannel:(BOOL)IsChannel withStats:(RTC_OBJC_TYPE(RTCStatisticsReport) *)stats withSessionId:(NSString*)sessionId withLogKey:(NSString*)logkey;
  12. // IsChannel:是否是P2P通道
  13. - (void)reportWebRtcRePoportTypeIsChannel:(BOOL)IsChannel withLocal:(RTC_OBJC_TYPE(RTCIceCandidate) *)local remoteCandidate:(RTC_OBJC_TYPE(RTCIceCandidate) *)remote withSessionId:(NSString*)sessionId withLogKey:(NSString*)logkey;
  14. @end
  15. NS_ASSUME_NONNULL_END