1
|
<?php
|
2
|
/*
|
3
|
* functions.inc
|
4
|
*
|
5
|
* part of pfSense (https://www.pfsense.org)
|
6
|
* Copyright (c) 2004-2013 BSD Perimeter
|
7
|
* Copyright (c) 2013-2016 Electric Sheep Fencing
|
8
|
* Copyright (c) 2014-2020 Rubicon Communications, LLC (Netgate)
|
9
|
* All rights reserved.
|
10
|
*
|
11
|
* originally part of m0n0wall (http://m0n0.ch/wall)
|
12
|
* Copyright (c) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
13
|
* All rights reserved.
|
14
|
*
|
15
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
16
|
* you may not use this file except in compliance with the License.
|
17
|
* You may obtain a copy of the License at
|
18
|
*
|
19
|
* http://www.apache.org/licenses/LICENSE-2.0
|
20
|
*
|
21
|
* Unless required by applicable law or agreed to in writing, software
|
22
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
23
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
24
|
* See the License for the specific language governing permissions and
|
25
|
* limitations under the License.
|
26
|
*/
|
27
|
|
28
|
/*
|
29
|
* DEPRECATED! DO NOT INCLUDE THIS FILE!
|
30
|
* Use individual .inc files containing the required functions instead.
|
31
|
*/
|
32
|
|
33
|
/* include all configuration functions */
|
34
|
require_once("certs.inc");
|
35
|
require_once("gwlb.inc");
|
36
|
require_once("interfaces.inc");
|
37
|
require_once("pfsense-utils.inc");
|
38
|
require_once("services.inc");
|
39
|
require_once("system.inc");
|
40
|
|
41
|
?>
|