X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpazpar2.c;h=4ada8dd770345f625426734fc9ef50f9588a9fc5;hb=3123b48786d777f60276d7011b974a0977698b32;hp=5070a10e9757b0f2d49ff5987105eac88c38b90f;hpb=5331cb5a3f7e8f6018036d13b4bfd6e334b2dbf0;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2.c b/src/pazpar2.c index 5070a10..4ada8dd 100644 --- a/src/pazpar2.c +++ b/src/pazpar2.c @@ -27,11 +27,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include +#include "parameters.h" #include "pazpar2.h" -#include "database.h" -#include "settings.h" #include - +#include +#include #include static struct conf_config *sc_stop_config = 0; @@ -90,7 +90,6 @@ static int sc_main( char *arg; const char *pidfile = 0; const char *uid = 0; - int session_timeout = 60; const char *listener_override = 0; const char *config_fname = 0; struct conf_config *config = 0; @@ -106,7 +105,7 @@ static int sc_main( yaz_log_init_prefix("pazpar2"); yaz_log_xml_errors(0, YLOG_WARN); - while ((ret = options("dDf:h:l:p:tT:u:VX", argv, argc, &arg)) != -2) + while ((ret = options("dDf:h:l:p:tu:VX", argv, argc, &arg)) != -2) { switch (ret) { @@ -132,16 +131,6 @@ static int sc_main( case 't': test_mode = 1; break; - case 'T': - session_timeout = atoi(arg); - if (session_timeout < 9 || session_timeout > 86400) - { - yaz_log(YLOG_FATAL, "Session timeout out of range 10..86400: %d", - session_timeout); - return 1; - } - global_parameters.session_timeout = session_timeout; - break; case 'u': uid = arg; break; @@ -159,7 +148,6 @@ static int sc_main( " -l file Log to file\n" " -p pidfile PID file\n" " -t Test configuration\n" - " -T session_timeout Session timeout\n" " -u uid Change user to uid\n" " -V Show version\n" " -X Debug mode\n"