Tizen 2.1 base
[platform/framework/web/download-provider.git] / src / include / download-provider-config.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_PROVIDER2_CONFIG_H
18 #define DOWNLOAD_PROVIDER2_CONFIG_H
19
20 #include <download-provider.h>
21 #include <download-provider-slots.h>
22
23 #include <net_connection.h>
24
25 #define DP_LOCK_PID "/tmp/download-provider.lock"
26
27 #define DP_CARE_CLIENT_MIN_INTERVAL 5
28 #define DP_CARE_CLIENT_MAX_INTERVAL 60
29
30 // check this value should be lower than DP_MAX_REQUEST
31 #define DP_MAX_DOWNLOAD_AT_ONCE 50
32
33 #define DP_LOG_DB_LIMIT_ROWS 1000
34 #define DP_LOG_DB_CLEAR_LIMIT_ONE_TIME 100
35
36 // Share the structure for all threads
37 typedef struct {
38         int listen_fd;
39         connection_h connection;
40         dp_network_type network_status;
41         dp_group_slots *groups;
42         dp_request_slots *requests;
43 } dp_privates;
44
45 #endif