1 |
5b237745
|
Scott Ullrich
|
<?php
|
2 |
|
|
/*
|
3 |
ac24dc24
|
Renato Botelho
|
* functions.inc
|
4 |
|
|
*
|
5 |
|
|
* part of pfSense (https://www.pfsense.org)
|
6 |
38809d47
|
Renato Botelho do Couto
|
* Copyright (c) 2004-2013 BSD Perimeter
|
7 |
|
|
* Copyright (c) 2013-2016 Electric Sheep Fencing
|
8 |
37d60e23
|
Luiz Souza
|
* Copyright (c) 2014-2025 Rubicon Communications, LLC (Netgate)
|
9 |
ac24dc24
|
Renato Botelho
|
* All rights reserved.
|
10 |
|
|
*
|
11 |
|
|
* originally part of m0n0wall (http://m0n0.ch/wall)
|
12 |
c5d81585
|
Renato Botelho
|
* Copyright (c) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
13 |
ac24dc24
|
Renato Botelho
|
* All rights reserved.
|
14 |
|
|
*
|
15 |
b12ea3fb
|
Renato Botelho
|
* 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 |
ac24dc24
|
Renato Botelho
|
*
|
19 |
b12ea3fb
|
Renato Botelho
|
* http://www.apache.org/licenses/LICENSE-2.0
|
20 |
ac24dc24
|
Renato Botelho
|
*
|
21 |
b12ea3fb
|
Renato Botelho
|
* 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 |
ac24dc24
|
Renato Botelho
|
*/
|
27 |
5b237745
|
Scott Ullrich
|
|
28 |
19b3f5bc
|
doktornotor
|
/*
|
29 |
|
|
* DEPRECATED! DO NOT INCLUDE THIS FILE!
|
30 |
|
|
* Use individual .inc files containing the required functions instead.
|
31 |
|
|
*/
|
32 |
|
|
|
33 |
5b237745
|
Scott Ullrich
|
/* include all configuration functions */
|
34 |
bbd36e2d
|
doktornotor
|
require_once("certs.inc");
|
35 |
ae3c9a62
|
Ermal Lu?i
|
require_once("gwlb.inc");
|
36 |
bbd36e2d
|
doktornotor
|
require_once("interfaces.inc");
|
37 |
175b9149
|
Scott Ullrich
|
require_once("pfsense-utils.inc");
|
38 |
bbd36e2d
|
doktornotor
|
require_once("services.inc");
|
39 |
c8950940
|
Ermal Lu?i
|
require_once("system.inc");
|
40 |
5b237745
|
Scott Ullrich
|
|
41 |
6f3d2063
|
Renato Botelho
|
?>
|