File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
library/server/ewsgi/connectors/standalone/src/implementation Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11note
2- description : " Summary description for {WGI_HTTPD_REQUEST_HANDLER}."
3- author : " "
2+ description : " [
3+ WGI implementation of HTTPD_REQUEST_HANDLER, will process the incoming connection
4+ and extract information on the request and the server
5+ ]"
46 date : " $Date$"
57 revision : " $Revision$"
68
@@ -34,8 +36,10 @@ feature {NONE} -- Initialization
3436feature -- Access
3537
3638 connector : detachable separate WGI_STANDALONE_CONNECTOR [G ]
39+ -- httpd solution.
3740
3841 base : detachable IMMUTABLE_STRING_ 8
42+ -- Root url base.
3943 do
4044 if attached connector as conn then
4145 if attached connector_base (conn ) as l_base then
@@ -47,6 +51,7 @@ feature -- Access
4751feature -- SCOOP helpers
4852
4953 connector_base (conn : separate WGI_STANDALONE_CONNECTOR [G ]): detachable separate READABLE_STRING_ 8
54+ -- Rool url based from a connector `conn'.
5055 do
5156 Result := conn .base
5257 end
Original file line number Diff line number Diff line change 11note
22 description : " Summary description for {WGI_HTTPD_REQUEST_HANDLER_FACTORY}."
3- author : " "
43 date : " $Date$"
54 revision : " $Revision$"
65
@@ -13,10 +12,12 @@ inherit
1312feature -- Access
1413
1514 connector : detachable separate WGI_STANDALONE_CONNECTOR [G ]
15+ -- httpd solution.
1616
1717feature -- Element change
1818
1919 set_connector (conn : like connector )
20+ -- Set `connector' with `conn'.
2021 do
2122 connector := conn
2223 end
You can’t perform that action at this time.
0 commit comments