Panda3D
 All Classes Functions Variables Enumerations
config_downloader.h
1 // Filename: config_downloader.h
2 // Created by: mike (19Mar00)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_DOWNLOADER_H
16 #define CONFIG_DOWNLOADER_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "dconfig.h"
21 #include "configVariableInt.h"
22 #include "configVariableDouble.h"
23 #include "configVariableBool.h"
24 #include "configVariableString.h"
25 #include "configVariableFilename.h"
26 #include "configVariableList.h"
27 
28 ConfigureDecl(config_downloader, EXPCL_PANDAEXPRESS, EXPTP_PANDAEXPRESS);
29 NotifyCategoryDecl(downloader, EXPCL_PANDAEXPRESS, EXPTP_PANDAEXPRESS);
30 
31 extern ConfigVariableInt downloader_byte_rate;
32 extern ConfigVariableBool download_throttle;
33 extern ConfigVariableDouble downloader_frequency;
34 extern ConfigVariableInt downloader_timeout;
35 extern ConfigVariableInt downloader_timeout_retries;
36 
37 extern ConfigVariableDouble decompressor_step_time;
38 extern ConfigVariableDouble extractor_step_time;
39 extern ConfigVariableInt patcher_buffer_size;
40 
41 extern ConfigVariableBool http_proxy_tunnel;
42 extern ConfigVariableDouble http_connect_timeout;
43 extern ConfigVariableDouble http_timeout;
44 extern ConfigVariableInt http_skip_body_size;
45 extern ConfigVariableDouble http_idle_timeout;
46 extern ConfigVariableInt http_max_connect_count;
47 
48 extern EXPCL_PANDAEXPRESS ConfigVariableInt tcp_header_size;
49 
50 extern EXPCL_PANDAEXPRESS void init_libdownloader();
51 
52 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a floating-point type.
This is a convenience class to specialize ConfigVariable as an integer type.