8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef INCLUDE_FANET_TIPC_H_
#define INCLUDE_FANET_TIPC_H_
poll_obj_t *tipc_open_server( int type, int inst, int client_max);
poll_obj_t *tipc_open_client( int type, int inst);
void tipc_close( poll_obj_t *obj );
poll_obj_t *tipc_accept_client( poll_obj_t *obj_server );
int tipc_write( poll_obj_t *obj, char *buf, int len );
int tipc_read( poll_obj_t *obj, char *buf, int len );
#endif /* INCLUDE_FANET_TIPC_H_ */
|