[BACK]Return to s_time.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/s_time.c between version 1.27 and 1.28

version 1.27, 2018/08/18 16:51:33 version 1.28, 2018/08/21 15:56:39
Line 90 
Line 90 
 extern int verify_depth;  extern int verify_depth;
   
 static void s_time_usage(void);  static void s_time_usage(void);
 static int doConnection(SSL *);  static int run_test(SSL *);
 static int benchmark(int);  static int benchmark(int);
   
 static SSL_CTX *tm_ctx = NULL;  static SSL_CTX *tm_ctx = NULL;
Line 343 
Line 343 
 }  }
   
 /***********************************************************************  /***********************************************************************
  * doConnection - make a connection   * run_test - make a connection, get a file, and shut down the connection
    *
  * Args:   * Args:
  *              scon    = SSL connection   *              scon    = SSL connection
  * Returns:   * Returns:
  *              1 on success, 0 on error   *              1 on success, 0 on error
  */   */
 static int  static int
 doConnection(SSL *scon)  run_test(SSL *scon)
 {  {
           char buf[1024 * 8];
         struct pollfd pfd[1];          struct pollfd pfd[1];
         BIO *conn;          BIO *conn;
         long verify_error;          long verify_error;
         int i;          int i, retval;
   
         if ((conn = BIO_new(BIO_s_connect())) == NULL)          if ((conn = BIO_new(BIO_s_connect())) == NULL)
                 return 0;                  return 0;
Line 383 
Line 385 
                         ERR_print_errors(bio_err);                          ERR_print_errors(bio_err);
                 return 0;                  return 0;
         }          }
           if (s_time_config.www_path != NULL) {
                   retval = snprintf(buf, sizeof buf,
                       "GET %s HTTP/1.0\r\n\r\n", s_time_config.www_path);
                   if ((size_t)retval >= sizeof buf) {
                           fprintf(stderr, "URL too long\n");
                           return 0;
                   }
                   SSL_write(scon, buf, strlen(buf));
                   while ((i = SSL_read(scon, buf, sizeof(buf))) > 0)
                           bytes_read += i;
           }
           if (s_time_config.no_shutdown)
                   SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN |
                       SSL_RECEIVED_SHUTDOWN);
           else
                   SSL_shutdown(scon);
         return 1;          return 1;
 }  }
   
Line 394 
Line 412 
         SSL *scon = NULL;          SSL *scon = NULL;
         time_t finishtime;          time_t finishtime;
         int ret = 1;          int ret = 1;
         char buf[1024 * 8];  
         int ver;          int ver;
   
         if (reuse_session) {          if (reuse_session) {
                 /* Get an SSL object so we can reuse the session id */                  /* Get an SSL object so we can reuse the session id */
                 if ((scon = SSL_new(tm_ctx)) == NULL)                  if ((scon = SSL_new(tm_ctx)) == NULL)
                         goto end;                          goto end;
                 if (!doConnection(scon)) {                  if (!run_test(scon)) {
                         fprintf(stderr, "Unable to get connection\n");                          fprintf(stderr, "Unable to get connection\n");
                         goto end;                          goto end;
                 }                  }
                 if (s_time_config.www_path != NULL) {  
                         int retval = snprintf(buf, sizeof buf,  
                             "GET %s HTTP/1.0\r\n\r\n", s_time_config.www_path);  
                         if ((size_t)retval >= sizeof buf) {  
                                 fprintf(stderr, "URL too long\n");  
                                 goto end;  
                         }  
                         SSL_write(scon, buf, strlen(buf));  
                         while (SSL_read(scon, buf, sizeof(buf)) > 0);  
                 }  
                 if (s_time_config.no_shutdown)  
                         SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN |  
                             SSL_RECEIVED_SHUTDOWN);  
                 else  
                         SSL_shutdown(scon);  
                 printf("starting\n");                  printf("starting\n");
         }          }
   
Line 438 
Line 440 
                         if ((scon = SSL_new(tm_ctx)) == NULL)                          if ((scon = SSL_new(tm_ctx)) == NULL)
                                 goto end;                                  goto end;
                 }                  }
                 if (!doConnection(scon))                  if (!run_test(scon))
                         goto end;                          goto end;
   
                 if (s_time_config.www_path != NULL) {  
                         int i, retval = snprintf(buf, sizeof buf,  
                             "GET %s HTTP/1.0\r\n\r\n", s_time_config.www_path);  
                         if ((size_t)retval >= sizeof buf) {  
                                 fprintf(stderr, "URL too long\n");  
                                 goto end;  
                         }  
                         SSL_write(scon, buf, strlen(buf));  
                         while ((i = SSL_read(scon, buf, sizeof(buf))) > 0)  
                                 bytes_read += i;  
                 }  
                 if (s_time_config.no_shutdown)  
                         SSL_set_shutdown(scon, SSL_SENT_SHUTDOWN |  
                             SSL_RECEIVED_SHUTDOWN);  
                 else  
                         SSL_shutdown(scon);  
   
                 nConn += 1;                  nConn += 1;
                 if (SSL_session_reused(scon))                  if (SSL_session_reused(scon))
                         ver = 'r';                          ver = 'r';

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28