]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/webcit.h
Change all instances of "URI" to "URL" because that's more sensible
[citadel.git] / webcit-ng / webcit.h
index 6a781b1c22c36a40d259a1f9506ff0314d367fd5..70097b748d8f3a12b416437cb3614c7829d426af 100644 (file)
@@ -60,7 +60,7 @@ struct http_header {                          // request and response headers in struct http_transacti
 
 struct http_transaction {                      // The lifetime of an HTTP request goes through this data structure.
        char *method;                           // The top half is built up by the web server and sent up to the
-       char *uri;                              // application stack.  The second half is built up by the application
+       char *url;                              // application stack.  The second half is built up by the application
        char *http_version;                     // stack and sent back down to the web server, which transmits it to
        char *site_prefix;                      // the client.
        struct http_header *request_headers;