?? rvh323connection.h
字號:
/***********************************************************************
Copyright (c) 2002 RADVISION Ltd.
************************************************************************
NOTICE:
This document contains information that is confidential and proprietary
to RADVISION Ltd.. No part of this document may be reproduced in any
form whatsoever without written prior approval by RADVISION Ltd..
RADVISION Ltd. reserve the right to revise this publication and make
changes without obligation to notify any person of such revisions or
changes.
***********************************************************************/
#ifndef _RVH323CONNECTION_H
#define _RVH323CONNECTION_H
#include "rvsocket.h"
#include "rvselect.h"
#ifdef __cplusplus
extern "C" {
#endif
/************************************************************************
* RvH323ConnectionType
* The type of connection we are currently using.
* When we receive events on a connection we know how to handle it by this
* type.
************************************************************************/
typedef enum
{
RvH323ConnectionNone = 0,
RvH323ConnectionRasUnicast,
RvH323ConnectionRasMulticast,
RvH323ConnectionH245,
RvH323ConnectionQ931,
RvH323ConnectionAnnexE
} RvH323ConnectionType;
/************************************************************************
* RvH323Connection
* H.323 connection. Each I/O connection used in H.323 is wrapped with
* this basic struct, allowing the stack to know how to handle incoming
* events for it.
************************************************************************/
typedef struct
{
RvSocket socket; /* I/O connection */
RvSelectFd fd; /* select file descriptor */
RvH323ConnectionType type; /* Type of connection */
void* context; /* Context of the connection.
RAS context is cmElem.
AnnexE,Q931,H245 context is cmTransGlobals */
} RvH323Connection;
#ifdef __cplusplus
}
#endif
#endif /* _RVH323CONNECTION_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -