// // StreamConfiguration.h // Limelight // // Created by Diego Waxemberg on 10/20/14. // Copyright (c) 2014 Limelight Stream. All rights reserved. // #import @interface StreamConfiguration : NSObject @property NSString* host; @property int hostAddr; @property int width; @property int height; @property int frameRate; @property int bitRate; @property int riKeyId; @property NSData* riKey; @end