Exemple #1
0
 function __construct($name, $host, $port, $stringToSend, $stringToExpect)
 {
     parent::__construct($name, $host, "udp");
     $this->port = $port;
     $this->stringToSend = $stringToSend;
     $this->stringToExpect = $stringToExpect;
 }
Exemple #2
0
 function __construct($name, $host)
 {
     parent::__construct($name, $host, "imap");
 }
Exemple #3
0
 function __construct($name, $host, $nameServer, $expectedIp)
 {
     parent::__construct($name, $host, "dns");
     $this->nameServer = $nameServer;
     $this->expectedIp = $expectedIp;
 }
Exemple #4
0
 function __construct($name, $host)
 {
     parent::__construct($name, $host, "pop3");
 }
Exemple #5
0
 function __construct($name, $host, $url)
 {
     parent::__construct($name, $host, "httpcustom");
     $this->url = $url;
 }
Exemple #6
0
 function __construct($name, $host, $port)
 {
     parent::__construct($name, $host, "tcp");
     $this->port = $port;
 }