12345678910111213141516171819202122 |
- //
- // webRtcManager+StatisticsReport.h
- // Private-X
- //
- // Created by xd h on 2024/9/10.
- //
- #import "webRtcManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface webRtcManager (StatisticsReport)
- // IsChannel:是否是P2P通道
- - (void)reportWebRtcRePoportTypeIsChannel:(BOOL)IsChannel withStats:(RTC_OBJC_TYPE(RTCStatisticsReport) *)stats withSessionId:(NSString*)sessionId withLogKey:(NSString*)logkey;
- // IsChannel:是否是P2P通道
- - (void)reportWebRtcRePoportTypeIsChannel:(BOOL)IsChannel withLocal:(RTC_OBJC_TYPE(RTCIceCandidate) *)local remoteCandidate:(RTC_OBJC_TYPE(RTCIceCandidate) *)remote withSessionId:(NSString*)sessionId withLogKey:(NSString*)logkey;
- @end
- NS_ASSUME_NONNULL_END
|