Restconf: Added fallback mechanism for non-ALPN HTTPS

* Set `CLICON_RESTCONF_NOALPN_DEFAULT` to `http/2` or `http/1.1`
  * For http/1 or http/2 only, that will be the default if no ALPN is set.
This commit is contained in:
Olof hagsand 2023-03-03 16:04:34 +01:00
parent 5f2978d06c
commit 1f5df800bc
6 changed files with 335 additions and 42 deletions

View file

@ -546,15 +546,15 @@ stream_notify(clicon_handle h,
char *stream,
const char *event, ...)
{
int retval = -1;
va_list args;
int len;
cxobj *xev = NULL;
yang_stmt *yspec = NULL;
char *str = NULL;
cbuf *cb = NULL;
char timestr[28];
struct timeval tv;
int retval = -1;
va_list args;
int len;
cxobj *xev = NULL;
yang_stmt *yspec = NULL;
char *str = NULL;
cbuf *cb = NULL;
char timestr[28];
struct timeval tv;
event_stream_t *es;
clicon_debug(CLIXON_DBG_DETAIL, "%s", __FUNCTION__);