Red5Pro IOS Client SDK

 10.0.0
Core SDK for IOS
R5Configuration.h
1//
2// R5Configuration.h
3// red5streaming
4//
5// Created by Andy Zupko on 11/12/14.
6// Copyright (c) 2014 Infrared5. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "global.h"
14@interface R5Configuration : NSObject
15
16@property int protocol;
17@property NSString *host;
18@property NSString *contextName;
19@property NSString *streamName;
20@property int port;
21@property NSString *parameters;
22@property float stream_buffer_time;
23
24@property NSString *licenseKey;
25@property NSString *bundleID;
27@property BOOL flushQueuedPackets;
28
30@property NSMutableArray *setup;
31@property NSString *sdp_body;
32@property client_ctx *client;
34
35
36
37@property float buffer_time;
38
39@end
Configuration object for the R5Stream.
Definition: R5Configuration.h:15
float stream_buffer_time
Buffer time request for server buffer time. Server will start dropping packets after this amount of b...
Definition: R5Configuration.h:22
int port
Port to connect over.
Definition: R5Configuration.h:20
BOOL inheritAVSessionOptions
Flag to allow SDK to set AVSessionCategroy options. By default, the SDK activates broadcast and playb...
Definition: R5Configuration.h:26
NSString * bundleID
Bundle Identifier, unique for license purposes an App Store requirements.
Definition: R5Configuration.h:25
NSString * contextName
Application/Context name.
Definition: R5Configuration.h:18
BOOL flushQueuedPackets
Flag to send any queued packets for a Publisher after a broadcast session up to the server in order t...
Definition: R5Configuration.h:27
NSString * licenseKey
SDK License Key.
Definition: R5Configuration.h:24
NSString * streamName
Name of the stream to publish/subscribe too.
Definition: R5Configuration.h:19
NSString * host
Host (IP) to connect too.
Definition: R5Configuration.h:17
NSString * parameters
Custom properties for connection. ';' delimited list of values (ex: "val1;val2;val3;")....
Definition: R5Configuration.h:21
float buffer_time
Desired buffer time for streaming.
Definition: R5Configuration.h:37