summaryrefslogtreecommitdiff
path: root/spartan/request.go
diff options
context:
space:
mode:
Diffstat (limited to 'spartan/request.go')
-rw-r--r--spartan/request.go14
1 files changed, 8 insertions, 6 deletions
diff --git a/spartan/request.go b/spartan/request.go
index d6a06f3..aa696fa 100644
--- a/spartan/request.go
+++ b/spartan/request.go
@@ -44,18 +44,20 @@ func ParseRequest(rdr io.Reader) (*types.Request, int, error) {
return nil, 0, InvalidRequestLine
}
+ u, err := url.Parse(path)
+ if err != nil {
+ return nil, 0, err
+ }
+ u.Scheme = "spartan"
+ u.Host = host
+
contentlen, err := strconv.Atoi(rest)
if err != nil {
return nil, 0, err
}
return &types.Request{
- URL: &url.URL{
- Scheme: "spartan",
- Host: host,
- Path: path,
- RawPath: path,
- },
+ URL: u,
Meta: &io.LimitedReader{R: bufrdr, N: int64(contentlen)},
}, contentlen, nil
}