VOCommonPlayerRTSPConfiguration.h
1 /************************************************************************
2 VisualOn Proprietary
3 Copyright (c) 2012-2016, VisualOn, Inc. All Rights Reserved
4 
5 All data and information contained in or disclosed by this document are
6 confidential and proprietary information of VisualOn, Inc, and all rights
7 therein are expressly reserved. By accepting this material, the recipient
8 agrees that this material and the information contained therein are held
9 in confidence and in trust. The material may only be used and/or disclosed
10 as authorized in a license agreement controlling such use and disclosure.
11 ************************************************************************/
12 
13 #import <Foundation/Foundation.h>
14 #import "VOOSMPType.h"
15 #import "VOOSMPRTSPPort.h"
16 #ifndef SKIP_IN_MAIN_DOCUMENTATION
17 #import "VOOSMPRTSPStatistics.h"
18 #endif
19 
20 @protocol VOCommonPlayerRTSPConfiguration <NSObject>
21 
22 
30 - (VO_OSMP_RETURN_CODE) setRTSPConnectionType:(VO_OSMP_RTSP_CONNECTION_TYPE)type;
31 
32 
40 - (VO_OSMP_RETURN_CODE) setRTSPConnectionPort:(VOOSMPRTSPPort *)portNum;
41 
42 
48 - (id<VOOSMPRTSPStatistics>) getRTSPStatistics;
49 
50 
58 - (VO_OSMP_RETURN_CODE) enableRTSPOverHTTP:(bool)enable;
59 
60 
68 - (VO_OSMP_RETURN_CODE) setRTSPOverHTTPConnectionPort:(int)portNum;
69 
70 
78 - (VO_OSMP_RETURN_CODE) setRTSPMaxSocketErrorCount:(int)count;
79 
80 
88 - (VO_OSMP_RETURN_CODE) setRTSPConnectionTimeout:(int)time;
89 
90 @end
91 
Definition: VOOSMPRTSPPort.h:17