Moved header files to include/yaz++. Switched to libtool and automake.
[yazpp-moved-to-github.git] / src / yaz-proxy-main.cpp
index 6d98175..b4be150 100644 (file)
@@ -1,10 +1,19 @@
 /*
- * Copyright (c) 1998-1999, Index Data.
+ * Copyright (c) 1998-2000, Index Data.
  * See the file LICENSE for details.
- * Sebastian Hammer, Adam Dickmeiss
  * 
  * $Log: yaz-proxy-main.cpp,v $
- * Revision 1.9  2000-08-07 14:19:59  adam
+ * Revision 1.12  2000-10-11 11:58:16  adam
+ * Moved header files to include/yaz++. Switched to libtool and automake.
+ * Configure script creates yaz++-config script.
+ *
+ * Revision 1.11  2000/09/08 10:23:42  adam
+ * Added skeleton of yaz-z-server.
+ *
+ * Revision 1.10  2000/09/04 08:59:16  adam
+ * Changed call to logging functions (yaz_ added).
+ *
+ * Revision 1.9  2000/08/07 14:19:59  adam
  * Fixed serious bug regarding timeouts. Improved logging for proxy.
  *
  * Revision 1.8  2000/07/04 13:48:49  adam
@@ -39,9 +48,9 @@
 #include <yaz/log.h>
 #include <yaz/options.h>
 
-#include <yaz-socket-manager.h>
-#include <yaz-pdu-assoc.h>
-#include <yaz-proxy.h>
+#include <yaz++/yaz-socket-manager.h>
+#include <yaz++/yaz-pdu-assoc.h>
+#include <yaz++/yaz-proxy.h>
 
 void usage(char *prog)
 {
@@ -76,7 +85,7 @@ int args(Yaz_Proxy *proxy, int argc, char **argv)
            proxy->set_proxyTarget(arg);
            break;
        case 'v':
-           log_init_level (log_mask_str(arg));
+           yaz_log_init_level (yaz_log_mask_str(arg));
            break;
        case 'c':
            proxy->set_max_clients(atoi(arg));