Project

General

Profile

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