rename URI-STRING->HTTP-URL to URL-STRING->HTTP-URL
This commit is contained in:
parent
5836ae567b
commit
17a46a7e71
|
@ -252,7 +252,7 @@
|
|||
(else (fatal-syntax-error "Bad Request Line."))))
|
||||
(meth (car elts))
|
||||
(request-uri (cadr elts))
|
||||
(url (uri-string->http-url request-uri))
|
||||
(url (url-string->http-url request-uri))
|
||||
(headers (if (equal? version '(0 . 9))
|
||||
'()
|
||||
(read-rfc822-headers (socket:inport sock)))))
|
||||
|
|
|
@ -240,7 +240,7 @@
|
|||
|
||||
;;; parse a HTTP 1.1. Request_URI into a http-url record
|
||||
|
||||
(define (uri-string->http-url uri-string)
|
||||
(define (url-string->http-url uri-string)
|
||||
(call-with-values
|
||||
(lambda () (parse-url uri-string))
|
||||
parsed-uri->http-url))
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
http-url-path
|
||||
http-url-query
|
||||
|
||||
uri-string->http-url
|
||||
url-string->http-url
|
||||
http-url->url-string
|
||||
http-url-path->path-string))
|
||||
|
||||
|
|
Loading…
Reference in New Issue