Added /request/host to both, the spec and the poc.

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-06-12 07:35:15 +02:00
parent 804b4dcf8b
commit 77f2855471
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -72,6 +72,8 @@ class Connection:
return self.request.content
elif res.path == 'request/path':
return self.request.path.encode('utf-8')
elif res.path == 'request/host':
return self.request.host.encode('utf-8')
elif res.path.startswith('request/matches/'):
return self.request.match_info[nth(2)].encode('utf-8')
elif res.path.startswith('request/params/'):