- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
<?
define ("PROXY_HOST", "10.4.4.4");
define ("PROXY_PORT", 3128);
define ("POP3_HOST", "pop3.yandex.ru");
define ("POP3_PORT", 110);
define ("POP3_USER","-------");
define ("POP3_PASSWORD","---------");
global $Ipc_Device;
/**
* Trying to create process...
**/
module_start();
$Dev_Data = null;
function device_ready (&$device, &$dd)
{
if ( $dd==null )
{
syslog ( "hell_php_client: Device IS READY." ); //Девица готова:)
return true;
}else{
syslog ( "hell_php_client: Device NOT READY." ); //Девица не готова:)
return false;
}
}
function device_write ($data )
{
if ( !dio_write ( $GLOBALS["Ipc_Device"], $data, strlen ( $data )))
{
syslog (1, "hell_php_client: Unable to write to device");
exit(-1);
}
}
function register_device ()
{
//Trying to create IPC Device IF NOT EXISTS
$Device_Name = "/dev/mail";
$IPC_DEVICE = null;
if ( file_exists ($Device_Name) )
{
syslog ( 1, " Device already created." );
}else{
$IPC_DEVICE = posix_mknod ( $Device_Name, POSIX_S_IFIFO);
if ( !$IPC_DEVICE )
{
syslog (1, "hell_php_client: Can't create device. Unknown problem.");
exit (1);
}
syslog (1, "hell_php_client: Device $Device_Name created.");
}
$dev = dio_open ($Device_Name, O_RDWR);
$GLOBALS["Ipc_Device"] = $dev;
return $dev;
}
function device_read($r)
{
return dio_read ($GLOBALS["Ipc_Device"], $r);
}
function device_close ( )
{
dio_close ( $GLOBALS["Ipc_Device"]);
}
/**
* CHAPTER 2: Networking. :))
* Connecting to mailserver
**/
//И еще куча кода с сокетами
Сие творение я написал прошлой ночью в нетрезвом состоянии.
Это - устройство сбора почты. Да, именно устройство. И оно работает. Но, блин, я теперь не могу разобраться КАК именно?
Там около 800 строк кода с сокетами, вызовами read/write/lock и даже fcntl!
eveel 21.08.2009 14:34 # 0