|
Revision 5878, 490 bytes
(checked in by seanmh, 4 years ago)
|
--
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
/* |
|---|
| 3 |
*Name : configuration.php |
|---|
| 4 |
*Author : Michael Yara |
|---|
| 5 |
*Created : June 15, 2008 |
|---|
| 6 |
*Last Updated : June 18, 2008 |
|---|
| 7 |
*History : 0.1 Beta |
|---|
| 8 |
*Purpose : Contains variables specifying the iSymphony server connection as well as system behavior. |
|---|
| 9 |
*Copyright : 2008 HEHE Enterprises, LLC |
|---|
| 10 |
*/ |
|---|
| 11 |
|
|---|
| 12 |
//Server connection information |
|---|
| 13 |
$HOST = "localhost"; |
|---|
| 14 |
$PORT = "50001"; |
|---|
| 15 |
|
|---|
| 16 |
//System configuration |
|---|
| 17 |
$TIMEOUT = 0; |
|---|
| 18 |
$READ_LENGTH = 1024; |
|---|
| 19 |
$NEW_LINE = "\n"; |
|---|
| 20 |
?> |
|---|