benchatt / wub

Automatically exported from code.google.com/p/wub
0 stars 0 forks source link

Error Message on https Listener #26

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hello Colin

Your Patch for the https has not workin it was coming the follwing error 
message:
3104-0mS error @@{accept: -code 1 -level 0 -errorcode NONE -errorinfo {unknown 
method "connect": must be Resume, Suspend, addSock, create, delSock, destroy, 
new or s2h\n    while executing\n"{*}[dict get $opts -httpd] $sock $ipaddr 
$rport {*}$opts -server $server"} -errorline 25}

I have now changed the call "Httpd connect" to "Httpd new", like you can see in 
the following patch. Is this good like this?

Marc

@@ -136,7 +136,7 @@ class create ::Listener {
    set args [dict merge [subst {
        -host [info hostname]
        -port 8080
-       -httpd {Httpd connect}
+       -httpd {Httpd new}
    }] $args]
    dict set args -id [self]

Original issue reported on code.google.com by marc.zie...@gmail.com on 18 Nov 2010 at 3:10

GoogleCodeExporter commented 9 years ago
Fixed as suggested

Original comment by mcc...@gmail.com on 18 Nov 2010 at 10:19