12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #import <Foundation/Foundation.h>
- #import "RTCMacros.h"
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @interface RTC_OBJC_TYPE (RTCIceCandidate) : NSObject
- @property(nonatomic, readonly, nullable) NSString *sdpMid;
- @property(nonatomic, readonly) int sdpMLineIndex;
- @property(nonatomic, readonly) NSString *sdp;
- @property(nonatomic, readonly, nullable) NSString *serverUrl;
- - (instancetype)init NS_UNAVAILABLE;
- - (instancetype)initWithSdp:(NSString *)sdp
- sdpMLineIndex:(int)sdpMLineIndex
- sdpMid:(nullable NSString *)sdpMid NS_DESIGNATED_INITIALIZER;
- @end
- NS_ASSUME_NONNULL_END
|