Blame view

app/app-prime-modbus/include/fanet/tipc_stream.h 1010 Bytes
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
8
9
  /*
   * tcp_stream.h
   *
   *  Created on: 2015. 9. 3.
   *      Author: jwjw
   */
  
  #ifndef INCLUDE_FANET_TIPC_STREAM_H_
  #define INCLUDE_FANET_TIPC_STREAM_H_
3061c73f6   김태훈   인코딩 변경 EUC-KR -> ...
10
11
12
13
14
15
  poll_obj_t  *tipc_stream_open_server( int type, int inst, int client_max);   /// tipc 소켓을 서버형태로 open 한다.
  poll_obj_t  *tipc_stream_open_client( int type, int inst);                   /// tipc 소켓을 클라이언트 형태로 open 하고 상대편에 접속한다
  void         tipc_stream_close( poll_obj_t *obj );                           /// tipc 소켓을 close 한다.
  poll_obj_t  *tipc_stream_accept_client( poll_obj_t *obj_server );            /// tipc 소켓의 접속요구를 처리한후 클라이언트소켓을 등록한다.
  int          tipc_stream_write( poll_obj_t *obj, char *buf, int len );       /// tipc 소켓을 통해 데이타를 전송한다.
  int          tipc_stream_read( poll_obj_t *obj, char *buf, int len );        /// tipc 소켓을 통해 데이타를 읽는다.
8c2952457   김태훈   응용 프로그램 추가
16
17
  
  #endif /* INCLUDE_FANET_TIPC_STREAM_H_ */