header passed to _mgr functions
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Wed, 14 Nov 2012 06:40:10 +0000 (07:40 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Wed, 14 Nov 2012 06:40:10 +0000 (07:40 +0100)
web/Obj/brisk.phh
web/briskin5/Obj/briskin5.phh

index a94412e..bb51cb6 100644 (file)
@@ -2133,10 +2133,12 @@ class Room {
     return ($ret);
   }
 
-  function request_mgr(&$s_a_p, $enc, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
+  function request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
   {
       printf("NEW_SOCKET (root): %d\n", intval($new_socket));
 
+      $enc = get_encoding($header);
+
       force_no_cache($header_out);
 
       switch ($path) {
@@ -2211,7 +2213,7 @@ class Room {
           $subs = "briskin5/";
           $subs_l = strlen($subs);
           if (!strncmp($path, $subs, $subs_l)) {
-              $ret = Bin5::request_mgr(&$s_a_p, $enc, &$header_out, &$new_socket, substr($path, $subs_l) , $addr, $get, $post, $cookie);
+              $ret = Bin5::request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, substr($path, $subs_l) , $addr, $get, $post, $cookie);
               return ($ret);
           }
           break;
index 815c8b4..52cedc5 100644 (file)
@@ -1387,10 +1387,12 @@ class Bin5 {
         return ($is_ab);
     }
 
-    static function request_mgr(&$s_a_p, $enc, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
+    static function request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
     {
         printf("NEW_SOCKET (root): %d\n", intval($new_socket));
         
+        $enc = get_encoding($header);
+
         if (($table_idx = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE) 
             unset($table_idx);