Roxen.git/
server/
base_server/
roxen.pike
Branch:
Tag:
Non-build tags
All tags
No tags
1998-04-23
1998-04-23 13:16:20 by Henrik Grubbström (Grubba) <grubba@grubba.org>
1668b2e8f536c00190f03f97cc1dd90bf8f7cec9 (
16
lines) (+
15
/-
1
)
[
Show
|
Annotate
]
Branch:
5.2
Added function to unload the configuration interface.
Rev: server/base_server/roxen.pike:1.191
1:
-
constant cvs_version = "$Id: roxen.pike,v 1.
190
1998/04/
21
19
:
07
:
29
grubba Exp $";
+
constant cvs_version = "$Id: roxen.pike,v 1.
191
1998/04/
23
13
:
16
:
20
grubba Exp $";
#define IN_ROXEN #include <roxen.h> #include <config.h>
387:
return configuration_interface_obj; }
+
// Unload the configuration interface
+
void unload_configuration_interface()
+
{
+
report_notice("Unloading the configuration interface\n");
-
+
configuration_interface_obj = 0;
+
loading_config_interface = 0;
+
enabling_configurations = 0;
+
build_root = 0;
+
catch{root->dest();};
+
root = 0;
+
}
+
+
// Create a new configuration from scratch. // 'type' is as in the form. 'none' for a empty configuration.