webmcp
annotate framework/env/request/get_path.lua @ 541:72e55c2eb63c
Use "cc -shared" instead of "ld -shared" to create *.so files
| author | jbe | 
|---|---|
| date | Sat Oct 19 15:05:55 2019 +0200 (2019-10-19) | 
| parents | 32b79658e5ae | 
| children | 
| rev | line source | 
|---|---|
| jbe@227 | 1 --[[-- | 
| jbe@227 | 2 path = | 
| jbe@227 | 3 request.get_path() | 
| jbe@227 | 4 | 
| jbe@451 | 5 Returns the path in the URL of the request without the leading slash and without the query part. | 
| jbe@451 | 6 May return nil for a HTTP OPTIONS request with "*" target. | 
| jbe@227 | 7 | 
| jbe@227 | 8 --]]-- | 
| jbe@227 | 9 | 
| jbe@227 | 10 function request.get_path() | 
| jbe@241 | 11 return request._http_request.path | 
| jbe@227 | 12 end |