Various patches are applied
[platform/framework/web/data-provider-master.git] / include / service_common.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 enum tcb_type {
17         TCB_CLIENT_TYPE_APP     = 0x00,
18         TCB_CLIENT_TYPE_SERVICE = 0x01,
19         TCB_CLIENT_TYPE_UNKNOWN = 0xff,
20 };
21
22 struct tcb;
23 struct service_context;
24
25 extern int tcb_fd(struct tcb *tcb);
26 extern struct service_context *tcb_svc_ctx(struct tcb *tcb);
27 extern int tcb_client_type(struct tcb *tcb);
28 extern int tcb_client_type_set(struct tcb *tcb, enum tcb_type type);
29
30 extern struct service_context *service_common_create(const char *addr, int (*service_thread_main)(struct tcb *tcb, struct packet *packet, void *data), void *data);
31 extern int service_common_destroy(struct service_context *svc_ctx);
32
33 extern int service_common_multicast_packet(struct tcb *tcb, struct packet *packet, int type);
34 extern int service_common_unicast_packet(struct tcb *tcb, struct packet *packet);
35
36 /* End of a file */