86fa5ca454a5e1ad8031425f93b3080277a0719b
[platform/framework/web/download-provider.git] / src / agent / include / download-agent-type.h
1 /*
2  * Copyright (c) 2012 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 #ifndef _Download_Agent_Types_H
18 #define _Download_Agent_Types_H
19
20 #include "download-agent-defs.h"
21
22 typedef int     da_result_t;
23 typedef int     da_bool_t;
24
25 #define IS_NOT_VALID_ID(x)  (x <= DA_INVALID_ID)
26
27 #define DA_MAX_URI_LEN                  1024
28 #define DA_MAX_FULL_PATH_LEN    356     // need configuration
29 #define DA_MAX_FILE_PATH_LEN            256     // need configuration
30 #define DA_MAX_STR_LEN                  256
31 #define DA_MAX_MIME_STR_LEN             256
32 #define DA_MAX_PROXY_ADDR_LEN   64              // e.g. 100.200.300.400:10000
33
34 #endif
35