|
1 | 1 | <?php
|
2 | 2 | /*
|
3 |
| - external config loader |
4 |
| - Copyright (C) 2010 Scott Ullrich |
5 |
| - Copyright (C) 2013-2015 Electric Sheep Fencing, LP |
6 |
| - All rights reserved. |
7 |
| -
|
8 |
| - Redistribution and use in source and binary forms, with or without |
9 |
| - modification, are permitted provided that the following conditions are met: |
10 |
| -
|
11 |
| - 1. Redistributions of source code must retain the above copyright notice, |
12 |
| - this list of conditions and the following disclaimer. |
13 |
| -
|
14 |
| - 2. Redistributions in binary form must reproduce the above copyright |
15 |
| - notice, this list of conditions and the following disclaimer in the |
16 |
| - documentation and/or other materials provided with the distribution. |
17 |
| -
|
18 |
| - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
19 |
| - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
20 |
| - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
21 |
| - AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, |
22 |
| - OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
23 |
| - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
24 |
| - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
25 |
| - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
26 |
| - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 |
| - POSSIBILITY OF SUCH DAMAGE. |
28 |
| -
|
29 |
| - Currently supported file system types: MS-Dos, FreeBSD UFS |
30 |
| -
|
31 |
| -*/ |
| 3 | + * ecl.php |
| 4 | + * |
| 5 | + * Copyright (c) 2010-2015 Electric Sheep Fencing, LLC. All rights reserved. |
| 6 | + * |
| 7 | + * Redistribution and use in source and binary forms, with or without |
| 8 | + * modification, are permitted provided that the following conditions are met: |
| 9 | + * |
| 10 | + * 1. Redistributions of source code must retain the above copyright notice, |
| 11 | + * this list of conditions and the following disclaimer. |
| 12 | + * |
| 13 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | + * notice, this list of conditions and the following disclaimer in |
| 15 | + * the documentation and/or other materials provided with the |
| 16 | + * distribution. |
| 17 | + * |
| 18 | + * 3. All advertising materials mentioning features or use of this software |
| 19 | + * must display the following acknowledgment: |
| 20 | + * "This product includes software developed by the pfSense Project |
| 21 | + * for use in the pfSense® software distribution. (http://www.pfsense.org/). |
| 22 | + * |
| 23 | + * 4. The names "pfSense" and "pfSense Project" must not be used to |
| 24 | + * endorse or promote products derived from this software without |
| 25 | + * prior written permission. For written permission, please contact |
| 26 | + * coreteam@pfsense.org. |
| 27 | + * |
| 28 | + * 5. Products derived from this software may not be called "pfSense" |
| 29 | + * nor may "pfSense" appear in their names without prior written |
| 30 | + * permission of the Electric Sheep Fencing, LLC. |
| 31 | + * |
| 32 | + * 6. Redistributions of any form whatsoever must retain the following |
| 33 | + * acknowledgment: |
| 34 | + * |
| 35 | + * "This product includes software developed by the pfSense Project |
| 36 | + * for use in the pfSense software distribution (http://www.pfsense.org/). |
| 37 | + * |
| 38 | + * THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY |
| 39 | + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 40 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 41 | + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR |
| 42 | + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 43 | + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 44 | + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 45 | + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 46 | + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 47 | + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 48 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 49 | + * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 50 | + */ |
32 | 51 |
|
33 | 52 | require_once("globals.inc");
|
34 | 53 | require_once("functions.inc");
|
|
0 commit comments