ZOOM now allows inspection of X509 peer certificate for verification.
[yaz-moved-to-github.git] / zoom / zoomsh.c
index 0196c81..74cb313 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 2002-2004, Index Data.
  * See the file LICENSE for details.
  *
- * $Id: zoomsh.c,v 1.26 2004-01-16 10:04:55 adam Exp $
+ * $Id: zoomsh.c,v 1.28 2004-04-28 22:45:00 adam Exp $
  */
 
 /* ZOOM-C Shell */
@@ -12,6 +12,8 @@
 #include <string.h>
 #include <ctype.h>
 
+#include <yaz/comstack.h>
+
 #if HAVE_READLINE_READLINE_H
 #include <readline/readline.h> 
 #endif
 
 #define MAX_CON 100
 
+#if 0
+static void dummy()
+{
+       cs_get_ssl(0);
+}
+#endif
+
 static int next_token (const char **cpp, const char **t_start)
 {
     int len = 0;
@@ -368,6 +377,25 @@ static void cmd_scan (ZOOM_connection *c, ZOOM_resultset *r,
     }
 }
 
+static void cmd_sort (ZOOM_connection *c, ZOOM_resultset *r,
+                      ZOOM_options options,
+                      const char **args)
+{
+    const char *sort_spec = *args;
+    int i;
+    
+    while (*sort_spec == ' ')
+        sort_spec++;
+    
+    for (i = 0; i<MAX_CON; i++)
+    {
+        if (r[i])
+            ZOOM_resultset_sort(r[i], "yaz", sort_spec);
+    }
+    while (ZOOM_event(MAX_CON, c))
+        ;
+}
+
 static void cmd_help (ZOOM_connection *c, ZOOM_resultset *r,
                      ZOOM_options options,
                      const char **args)
@@ -479,6 +507,8 @@ static int cmd_parse (ZOOM_connection *c, ZOOM_resultset *r,
        cmd_debug(c, r, options, buf);
     else if (is_command ("scan", cmd_str, cmd_len))
        cmd_scan(c, r, options, buf);
+    else if (is_command ("sort", cmd_str, cmd_len))
+       cmd_sort(c, r, options, buf);
     else
        printf ("unknown command %.*s\n", cmd_len, cmd_str);
     return 2;
@@ -526,6 +556,12 @@ int main (int argc, char **argv)
     ZOOM_connection z39_con[MAX_CON];
     ZOOM_resultset  z39_res[MAX_CON];
 
+    if (0)
+    {
+        COMSTACK cs = 0;
+        cs_get_ssl(cs);
+       cs_create_host(0, 0, 0);
+    }
     nmem_init();
     for (i = 0; i<MAX_CON; i++)
     {