From 5246b7d9d4531f3c886e883612d0a1df585478a0 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 30 Jul 2002 10:50:48 +0000 Subject: [PATCH] Fixed proxy setting for ZOOM --- ext/yaz/php_yaz.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/yaz/php_yaz.c b/ext/yaz/php_yaz.c index b0a09af824..4c8c492087 100644 --- a/ext/yaz/php_yaz.c +++ b/ext/yaz/php_yaz.c @@ -1281,6 +1281,7 @@ PHP_FUNCTION(yaz_connect) option_set (as, "otherInfo0", otherInfo[0]); option_set (as, "otherInfo1", otherInfo[1]); option_set (as, "otherInfo2", otherInfo[2]); + option_set (as, "proxy", proxy_str); ZOOM_connection_connect (as->zoom_conn, zurl_str, 0); break; } @@ -1334,6 +1335,7 @@ PHP_FUNCTION(yaz_connect) option_set (as, "otherInfo0", otherInfo[0]); option_set (as, "otherInfo1", otherInfo[1]); option_set (as, "otherInfo2", otherInfo[2]); + option_set (as, "proxy", proxy_str); ZOOM_connection_connect (as->zoom_conn, zurl_str, 0); #else -- 2.50.1