You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
215 lines
6.0 KiB
215 lines
6.0 KiB
1 year ago
|
/************************************************************************
|
||
|
|
||
|
Copyright (c) 2005-2011 by Juphoon System Software, Inc.
|
||
|
All rights reserved.
|
||
|
|
||
|
This software is confidential and proprietary to Juphoon System,
|
||
|
Inc. No part of this software may be reproduced, stored, transmitted,
|
||
|
disclosed or used in any form or by any means other than as expressly
|
||
|
provided by the written license agreement between Juphoon and its
|
||
|
licensee.
|
||
|
|
||
|
THIS SOFTWARE IS PROVIDED BY JUPHOON "AS IS" AND ANY EXPRESS OR
|
||
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||
|
ARE DISCLAIMED. IN NO EVENT SHALL JUPHOON BE LIABLE FOR ANY DIRECT,
|
||
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||
|
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
||
|
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||
|
POSSIBILITY OF SUCH DAMAGE.
|
||
|
|
||
|
Juphoon System Software, Inc.
|
||
|
Email: support@juphoon.com
|
||
|
Web: http://www.juphoon.com
|
||
|
|
||
|
************************************************************************/
|
||
|
/*************************************************
|
||
|
File name : mtc_conf_db.h
|
||
|
Module : multimedia talk client
|
||
|
Author : leo.lv
|
||
|
Created on : 2011-01-03
|
||
|
Description :
|
||
|
Data structure and function declare required by MTC conference DB
|
||
|
|
||
|
Modify History:
|
||
|
1. Date: Author: Modification:
|
||
|
*************************************************/
|
||
|
#ifndef _MTC_CONF_DB_H__
|
||
|
#define _MTC_CONF_DB_H__
|
||
|
|
||
|
#include "mtc_def.h"
|
||
|
|
||
|
/**
|
||
|
* @file mtc_conf_db.h
|
||
|
* @brief MTC Conference Database Interface Functions.
|
||
|
*/
|
||
|
#ifdef __cplusplus
|
||
|
EXPORT_FLAG {
|
||
|
#endif
|
||
|
|
||
|
/** @brief MTC conference sts type */
|
||
|
typedef enum EN_MTC_CONF_DB_STSUPLOAD_TYPE
|
||
|
{
|
||
|
EN_MTC_CONF_DB_STSUPLOAD_NORMAL = 0,
|
||
|
EN_MTC_CONF_DB_STSUPLOAD_ALILOG
|
||
|
} EN_MTC_CONF_DB_STSUPLOAD_TYPE;
|
||
|
|
||
|
/**
|
||
|
* @brief Get the use RUDP option from database.
|
||
|
*
|
||
|
* @retval ZTRUE User will use RUDP.
|
||
|
* @retval ZFALSE User will not use RUDP.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetUseRudp
|
||
|
*/
|
||
|
MTCFUNC ZBOOL Mtc_ConfDbGetUseRudp(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set the use RUDP option.
|
||
|
*
|
||
|
* @param [in] bEnable User use RUDP option.
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetUseRudp
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetUseRudp(ZBOOL bEnable);
|
||
|
|
||
|
/**
|
||
|
* @brief Get the use User ID option from database.
|
||
|
*
|
||
|
* @retval ZTRUE User will use User ID.
|
||
|
* @retval ZFALSE User will not use User ID.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetUseUid
|
||
|
*/
|
||
|
MTCFUNC ZBOOL Mtc_ConfDbGetUseUid(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set the use User ID option.
|
||
|
*
|
||
|
* @param [in] bEnable User use User ID option.
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetUseUid
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetUseUid(ZBOOL bEnable);
|
||
|
|
||
|
/**
|
||
|
* @brief Get if use conference sts.
|
||
|
*
|
||
|
* @retval ZTRUE Use sts.
|
||
|
* @retval ZFALSE Not to use sts.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetStsEnable
|
||
|
*/
|
||
|
MTCFUNC ZBOOL Mtc_ConfDbGetStsEnable(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set if use call sts.
|
||
|
*
|
||
|
* @param [in] bEnable ZTRUE to use sts.
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetStsEnable
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetStsEnable(ZBOOL bEnable);
|
||
|
|
||
|
/**
|
||
|
* @brief Get conference statistics upload type.
|
||
|
*
|
||
|
* @retval The conference statistics upload type
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetStsUploadType
|
||
|
*/
|
||
|
MTCFUNC ZUINT Mtc_ConfDbGetStsUploadType(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set conference statistics upload type.
|
||
|
*
|
||
|
* @param [in] iType The conference statistics upload type @ref EN_MTC_CONF_DB_STSUPLOAD_TYPE.
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetStsUploadType
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetStsUploadType(ZUINT iType);
|
||
|
|
||
|
/**
|
||
|
* @brief Get conference statistics collect gap time.
|
||
|
*
|
||
|
* @retval The conference statistics collect gap time (seconds).
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetStsGapTime
|
||
|
*/
|
||
|
MTCFUNC ZUINT Mtc_ConfDbGetStsGapTime(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set conference statistics collect gap time.
|
||
|
*
|
||
|
* @param [in] iTime The conference statistics collect gap time (seconds).
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetStsGapTime
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetStsGapTime(ZUINT iTime);
|
||
|
|
||
|
/**
|
||
|
* @brief Get conference statistics collect upload gap time.
|
||
|
*
|
||
|
* @retval The conference statistics collect gap time (seconds).
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetStsUploadGapTime
|
||
|
*/
|
||
|
MTCFUNC ZUINT Mtc_ConfDbGetStsUploadGapTime(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set conference statistics collect upload gap time.
|
||
|
*
|
||
|
* @param [in] iTime The conference statistics collect gap time (seconds).
|
||
|
*
|
||
|
* @retval ZOK Set the option successfully.
|
||
|
* @retval ZFAILED Set the option option failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetStsUploadGapTime
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetStsUploadGapTime(ZUINT iTime);
|
||
|
|
||
|
/**
|
||
|
* @brief Get conference mtu size.
|
||
|
*
|
||
|
* @retval The conference mtu size.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbSetMtuSize
|
||
|
*/
|
||
|
MTCFUNC ZUINT Mtc_ConfDbGetMtuSize(ZFUNC_VOID);
|
||
|
|
||
|
/**
|
||
|
* @brief Set conference mtu size.
|
||
|
*
|
||
|
* @param [in] iMtuSize The conference mtu size.
|
||
|
*
|
||
|
* @retval ZOK Set value successfully.
|
||
|
* @retval ZFAILED Set value failed.
|
||
|
*
|
||
|
* @see @ref Mtc_ConfDbGetMtuSize
|
||
|
*/
|
||
|
MTCFUNC ZINT Mtc_ConfDbSetMtuSize(ZUINT iMtuSize);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _MTC_CONF_DB_H__ */
|