[詳解]
5 #import <Foundation/Foundation.h>
14 #ifndef DOXYGEN_SKIP_THIS
18 typedef NS_ENUM(NSUInteger, SKWPeerTypeEnum)
21 SKW_PEER_TYPE_SKYWAY = 0,
23 SKW_PEER_TYPE_PEERJS = 1,
24 } SKYWAY_API_DEPRECATED;
25 #endif // !DOXYGEN_SKIP_THIS
58 @property (nonatomic) SKWPeerTypeEnum
type SKYWAY_API_DEPRECATED;
63 @property (nonatomic) NSString* __nullable
key;
68 @property (nonatomic) NSString* __nullable
host;
73 @property (nonatomic) NSInteger
port;
78 @property (nonatomic) NSString* __nullable
path SKYWAY_API_DEPRECATED;
88 @property (nonatomic) NSArray* __nullable
config;
98 @property (nonatomic) NSString* __nullable
domain;
103 @property (nonatomic) BOOL
turn;
111 @property (nonatomic) BOOL
useH264 SKYWAY_API_DEPRECATED;
NSString *__nullable path
自身のシグナリングサーバが動作している場所のパスです。(現在は指定しても無視されます。)
Definition: SKWPeerOption.h:78
BOOL secure
サーバとの SSL 接続を行うか指定します。デフォルトは YES となります。
Definition: SKWPeerOption.h:83
@ SKW_DEBUG_LEVEL_ONLY_ERROR
エラーのみのログを出力します
Definition: SKWPeerOption.h:39
SKWDebugLevelEnum
デバッグアウトプットレベル
Definition: SKWPeerOption.h:30
NSString *__nullable key
SkyWay API キーを指定します
Definition: SKWPeerOption.h:63
BOOL useH264
H.264 ハードウェアコーデックを利用するかどうか指定します。 デフォルトは YES となります。 (現在は常に利用するようになっており、NO を指定しても無視されます。)
Definition: SKWPeerOption.h:111
Peerを認証するためのクレデンシャル
Definition: SKWPeerCredential.h:14
NSString *__nullable domain
SkyWay API に関連するドメインを指定します
Definition: SKWPeerOption.h:98
NSInteger port
サーバのポート番号です。指定が無い場合は、SkyWay シグナリングサーバによって自動的に接続先が決定されます。
Definition: SKWPeerOption.h:73
SKWPeerTypeEnum type
接続先シグナリングサーバの種別を指定します。(現在は SkyWay のみが有効であり、指定しても無視されます。)
Definition: SKWPeerOption.h:58
@ SKW_DEBUG_LEVEL_NO_LOGS
ログを出力しません
Definition: SKWPeerOption.h:35
SKWDebugLevelEnum debug
ログレベルを指定します。デフォルトは PEER_DEBUG_LEVEL_NO_LOGS です。
Definition: SKWPeerOption.h:93
BOOL turn
SkyWay TURN サーバを使用します (TURN サーバの利用を申請する必要があります)
Definition: SKWPeerOption.h:103
@ SKW_DEBUG_LEVEL_ERROR_AND_WARNING
エラーと警告のログを出力します
Definition: SKWPeerOption.h:43
SKWPeer 初期化オプションクラス
Definition: SKWPeerOption.h:53
@ SKW_DEBUG_LEVEL_ALL_LOGS
全てのログを出力します
Definition: SKWPeerOption.h:47
NSArray *__nullable config
ICE/TURN サーバ設定を指定します
Definition: SKWPeerOption.h:88
NSString *__nullable host
サーバのホスト名です。指定が無い場合は、SkyWay シグナリングサーバによって自動的に接続先が決定されます。
Definition: SKWPeerOption.h:68