Initialize Tizen 2.3
[framework/appfw/app-checker.git] / include / ac_sock.h
1 /*
2  *  app-checker
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 \r
22 \r
23 #ifndef __APP_PKT_T_\r
24 #define __APP_PKT_T_\r
25 \r
26 #include <unistd.h>\r
27 #define __USE_GNU\r
28 #include <sys/socket.h>\r
29 #include <linux/un.h>\r
30 \r
31 enum ac_cmd {\r
32         AC_CHECK,\r
33         AC_REGISTER,\r
34         AC_UNREGISTER,\r
35 };\r
36 \r
37 #define AC_SOCK_NAME "/tmp/ac-socket"\r
38 #define AC_SOCK_MAXBUFF 65535\r
39 \r
40 typedef struct _ac_pkt_t {\r
41         int cmd;\r
42         int len;\r
43         unsigned char data[1];\r
44 } ac_pkt_t;\r
45 \r
46 int _create_server_sock();\r
47 int _create_client_sock();\r
48 int _app_send_raw(int cmd, unsigned char *data, int datalen);\r
49 ac_pkt_t *_app_recv_raw(int fd, int *clifd, struct ucred *cr);\r
50 int _send_result_to_server(int fd, int res);\r
51 \r
52 \r
53 #endif\r
54 \r