summaryrefslogtreecommitdiff
path: root/include/mmsvc_core.h
blob: fbdd71a84c128218117ef2a2ec26c6a27ed621d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * mmsvc-core
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: YoungHun Kim <yh8004.kim@samsung.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#ifndef __MMSVC_CORE_H__
#define __MMSVC_CORE_H__

#ifdef  _cplusplus
extern "C" {
#endif

#define MM_URI_MAX_LENGTH 100
#define MM_MSG_MAX_LENGTH 1024*1024

typedef struct __Client * Client;

int mmsvc_core_run();
void mmsvc_core_connection_close(int sock_fd);
int mmsvc_core_client_new(void);
int mmsvc_core_client_new_data_ch(void);
int mmsvc_core_client_get_msg_fd(Client client);
int mmsvc_core_client_get_data_fd(Client client);
void mmsvc_core_client_set_cust_data(Client client, void *data);
void *mmsvc_core_client_get_cust_data(Client client);
char *mmsvc_core_client_get_msg(Client client);
int mmsvc_core_client_get_capi(Client client);
void mmsvc_core_worker_exit(Client client);

#ifdef __cplusplus
}
#endif
#endif	/*__MMSVC_CORE_H__*/