tizen 2.4 release
[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
22
23 #ifndef __APP_PKT_T_
24 #define __APP_PKT_T_
25
26 #include <unistd.h>
27 #define __USE_GNU
28 #include <sys/socket.h>
29 #include <linux/un.h>
30
31 enum ac_cmd {
32         AC_CHECK,
33         AC_REGISTER,
34         AC_UNREGISTER,
35 };
36
37 #define AC_SOCK_NAME "/tmp/ac-socket"
38 #define AC_SOCK_MAXBUFF 131071
39
40 typedef struct _ac_pkt_t {
41         int cmd;
42         int len;
43         unsigned char data[1];
44 } ac_pkt_t;
45
46 int _create_server_sock();
47 int _create_client_sock();
48 int _app_send_raw(int cmd, unsigned char *data, int datalen);
49 ac_pkt_t *_app_recv_raw(int fd, int *clifd, struct ucred *cr);
50 int _send_result_to_server(int fd, int res);
51
52
53 #endif