()
| 170 | } |
| 171 | |
| 172 | func (r *Request) URI() string { |
| 173 | if r.FastRequest != nil { |
| 174 | return r.FastRequest.URI().String() |
| 175 | } else if r.StandardRequest != nil { |
| 176 | return r.StandardRequest.URL.String() |
| 177 | } else { |
| 178 | return "" |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | func (r *Request) Host() string { |
| 183 | if r.FastRequest != nil { |