forked from whiteblock/hobbits
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrequest.php
36 lines (30 loc) · 976 Bytes
/
request.php
1
2
3
4
5
6
7
8
9
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
<?php
class ewp_request{
public $proto;
public $version;
public $command;
public $header;
public $body;
public function parse(string $raw) {
$req_split = explode("\n",$raw,2);
$given_request = explode(" ",$req_split[0]);
$this->proto = $given_request[0];
$this->version = $given_request[1];
$this->command = $given_request[2];
$this->header = substr($req_split[1],0,intval($given_request[3]));
$this->body = substr($req_split[1],intval($given_request[3]),intval($given_request[4]));
}
public function marshal(){
$out = $this->proto . " ". $this->version . " " . $this->command;
$out .= " ".strlen($this->header). " ".strlen($this->body);
$out .= "\n".$this->header . $this->body;
return $out;
}
}
//Uncomment and run for example
/*
$test = new ewp_request;
$test->parse("EWP 0.2 PING 0 5\n12345");
print_r($test);
echo $test->marshal()."\n";*/
?>