tipc_bcast.h
1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
@file tipc_bcast.h
@date 2015-08-31
@author 장길석 jks@falinux.com
@brief TIPC-DGRAM 소켓을 사용하여 멀티캐스트가 가능한 통신을 담당한다.
@modify
@todo
@bug
@remark
@warning
*/
//
// 저작권 에프에이리눅스(주)
// 외부공개 금지
//
//----------------------------------------------------------------------------
#ifndef INCLUDE_FANET_TIPC_BCAST_H_
#define INCLUDE_FANET_TIPC_BCAST_H_
#ifdef __cplusplus
extern "C" {
#endif
/// @{
/// @brief 외부에서 사용할수 있는 객체함수 리스트
poll_obj_t *tipc_bcast_open( int type, int lower, int upper ); /// tipc_dgram 소켓을 서버형태로 open 한다.
void tipc_bcast_close( poll_obj_t *obj ); /// tipc_dgram 소켓을 close 한다.
int tipc_bcast_write( poll_obj_t *obj, int type, int lower, int upper, char *buf, int len ); /// tipc_dgram 소켓을 통해 데이타를 전송한다.
int tipc_bcast_read( poll_obj_t *obj, char *buf, int len ); /// tipc_dgram 소켓을 통해 데이타를 읽는다.
/// @}
#ifdef __cplusplus
}
#endif
#endif /* INCLUDE_FANET_TIPC_BCAST_H_ */