example: handle uclient connection errors
[project/uclient.git] / uclient-example.c
index 2874ec2..144696c 100644 (file)
@@ -35,6 +35,7 @@
 static struct ustream_ssl_ctx *ssl_ctx;
 static const struct ustream_ssl_ops *ssl_ops;
 static int quiet = false;
+static bool verify = true;
 static const char *output_file;
 static int output_fd = -1;
 static int error_ret;
@@ -85,6 +86,10 @@ static int open_output_file(const char *path, bool create)
 
 static void request_done(struct uclient *cl)
 {
+       if (output_fd >= 0) {
+               close(output_fd);
+               output_fd = -1;
+       }
        uclient_disconnect(cl);
        uloop_end();
 }
@@ -126,6 +131,7 @@ static void example_header_done(struct uclient *cl)
 
        default:
                request_done(cl);
+               error_ret = 8;
                break;
        }
 }
@@ -172,19 +178,45 @@ static void example_eof(struct uclient *cl)
        request_done(cl);
 }
 
-static void example_error(struct uclient *cl, int code)
+static void handle_uclient_error(struct uclient *cl, int code)
 {
+       const char *type = "Unknown error";
+       bool ignore = false;
+
+       switch(code) {
+       case UCLIENT_ERROR_CONNECT:
+               type = "Connection failed";
+               error_ret = 4;
+               break;
+       case UCLIENT_ERROR_SSL_INVALID_CERT:
+               type = "Invalid SSL certificate";
+               ignore = !verify;
+               error_ret = 5;
+               break;
+       case UCLIENT_ERROR_SSL_CN_MISMATCH:
+               type = "Server hostname does not match SSL certificate";
+               ignore = !verify;
+               error_ret = 5;
+               break;
+       default:
+               error_ret = 1;
+               break;
+       }
+
        if (!quiet)
-               fprintf(stderr, "Error %d!\n", code);
+               fprintf(stderr, "Connection error: %s%s\n", type, ignore ? " (ignored)" : "");
 
-       request_done(cl);
+       if (ignore)
+               error_ret = 0;
+       else
+               request_done(cl);
 }
 
 static const struct uclient_cb cb = {
        .header_done = example_header_done,
        .data_read = example_read_data,
        .data_eof = example_eof,
-       .error = example_error,
+       .error = handle_uclient_error,
 };
 
 static int usage(const char *progname)
@@ -238,7 +270,6 @@ int main(int argc, char **argv)
 {
        const char *progname = argv[0];
        struct uclient *cl;
-       bool verify = true;
        int ch;
        int longopt_idx = 0;