MCPcopy Create free account
hub / github.com/antirez/ds4 / web_set_err

Function web_set_err

ds4_web.c:113–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113static void web_set_err(char *err, size_t err_len, const char *fmt, ...) {
114 if (!err || err_len == 0) return;
115 va_list ap;
116 va_start(ap, fmt);
117 vsnprintf(err, err_len, fmt, ap);
118 va_end(ap);
119}
120
121static void web_log(ds4_web *web, const char *msg) {
122 if (web && web->log) web->log(web->log_privdata, msg);

Callers 15

web_set_cancel_errFunction · 0.85
web_tcp_connectFunction · 0.85
web_http_requestFunction · 0.85
web_ws_connectFunction · 0.85
web_read_exactFunction · 0.85
web_ws_send_textFunction · 0.85
web_ws_read_messageFunction · 0.85
web_cdp_eval_stringFunction · 0.85
web_wait_readyFunction · 0.85
web_page_probeFunction · 0.85
web_wait_navigated_readyFunction · 0.85
web_scroll_dynamic_pageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected