[Release] wrt_0.8.166 for tizen_2.1 branch
[platform/framework/web/wrt.git] / src / wrt-launchpad-daemon / include / process_pool.h
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    process_pool.h
18  * @author  Tae-Jeong Lee (taejeong.lee@samsung.com)
19  * @version 0.1
20  * @brief   process pool socket api prototypes
21  */
22
23 #ifndef __PROCESS_POOL_H_
24 #define __PROCESS_POOL_H_
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif //__cplusplus
30
31 #include <app_sock.h>
32
33 int  __create_process_pool_server();
34 int  __connect_process_pool_server();
35 int  __accept_dummy_process(int server_fd, int* out_client_fd, int* out_client_pid);
36 void __refuse_dummy_process(int server_fd);
37 int  __send_pkt_raw_data(int client_fd, app_pkt_t* pkt);
38
39 #ifdef __cplusplus
40 }
41 #endif //__cplusplus
42
43 #endif //__PROCESS_POOL_H_
44