mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
d1d2808919
This change-set modifies PR https://github.com/Unidata/netcdf-c/pull/2555 to add the changes listed below. Most of these changes are required by changes to the Java remotetest.unidata.ucar.edu server. ## DAP4 Related Changes * Add tests *dap4_test/test_constraints.sh* and *dap4_test/test_hyrax.sh*. * Provide explicit list of remotetest files to test. * Cleanup local checksum computing and verification. * Define a temporary Hyrax hack flag to deal with the way Hyrax handles checksums and add "#hyrax" fragment flag for it. * Add a hack to get past an LGTM problem with using "http:". * Improve debug support. ## Other Changes * Cleanup the recipe in *docs/nczarr.md* for building *aws-sdk-cpp* library.
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/*! \file
|
|
|
|
Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014,
|
|
2015, 2016, 2017, 2018
|
|
University Corporation for Atmospheric Research/Unidata.
|
|
|
|
See \ref copyright file for more info.
|
|
|
|
*/
|
|
#include "config.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "nctestserver.h"
|
|
|
|
#define PINGTIME 25
|
|
|
|
/* Attempt to shut up LGTM */
|
|
#define HTTP "http"
|
|
#define HTTPS "https"
|
|
|
|
/**
|
|
usage: pingurl <svc>
|
|
See if a specific server at a given url appears to be up.
|
|
*/
|
|
|
|
static void
|
|
usage()
|
|
{
|
|
fprintf(stderr,"usage: pingurl <svc>\n");
|
|
exit(1);
|
|
}
|
|
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
char url[MAXSERVERURL+1];
|
|
int found = 0;
|
|
int ishttps = 0;
|
|
|
|
argc--; argv++;
|
|
if(argc < 1)
|
|
usage();
|
|
|
|
/* Try http: first */
|
|
snprintf(url,MAXSERVERURL,HTTP"://%s",argv[0]);
|
|
if(timedping(url,PINGTIME) == NC_NOERR)
|
|
found = 1;
|
|
else {
|
|
/* Try https: next */
|
|
snprintf(url,MAXSERVERURL,HTTPS"://%s",argv[0]);
|
|
if(timedping(url,PINGTIME) == NC_NOERR) {
|
|
found = 1;
|
|
ishttps = 1;
|
|
}
|
|
}
|
|
if(found)
|
|
printf((ishttps?"https\n":"http\n"));
|
|
else
|
|
printf("no\n");
|
|
exit(0);
|
|
}
|