MCPcopy Create free account
hub / github.com/Netis/cloud-probe / error_format

Function error_format

cpworker/src/errorf.c:7–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include "errorf.h"
6
7void error_format(char *errbuf, const char *format, ...)
8{
9 va_list args;
10 va_start(args, format);
11 vsnprintf(errbuf, ERROR_BUFFER_SIZE, format, args);
12 va_end(args);
13}
14
15void error_wrap_format(char *errbuf, const char *format, ...)
16{

Callers 15

pcap_file_capturer_newFunction · 0.85
get_if_mac_addrFunction · 0.85
get_if_ip_addrFunction · 0.85
capture_task_newFunction · 0.85
vxlan_output_newFunction · 0.85
gre_output_newFunction · 0.85
open_self_netnsFunction · 0.85
enter_netns_by_pathFunction · 0.85
enter_netns_by_fdFunction · 0.85
libpcap_capturer_newFunction · 0.85

Calls

no outgoing calls

Tested by 1

mock_get_if_ip_addrFunction · 0.68