sync with nino and applied changes to connector

This commit is contained in:
Jocelyn Fiat
2011-11-04 20:21:35 +01:00
parent 3a6e3592ae
commit 7669ccfc1d
3 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ feature -- Server
do
launched := False
port := 0
create {WGI_NINO_HANDLER} l_http_handler.make_with_callback (server, "NINO_HANDLER", Current)
create {WGI_NINO_HANDLER} l_http_handler.make_with_callback (server, Current)
if configuration.is_verbose then
if attached base as l_base then
print ("Base=" + l_base + "%N")

View File

@@ -19,11 +19,11 @@ create
feature {NONE} -- Initialization
make_with_callback (a_main_server: like main_server; a_name: STRING; a_callback: like callback)
make_with_callback (a_main_server: like main_server; a_callback: like callback)
-- Initialize `Current'.
do
base := a_callback.base
make (a_main_server, a_name)
make (a_main_server)
callback := a_callback
end