congestvpn/util.cpp

36 lines
668 B
C++
Raw Normal View History

2020-06-02 13:08:23 +02:00
#include <cstdio>
#include <string.h>
2020-06-04 11:46:35 +02:00
#include <stdarg.h>
2020-06-02 13:08:23 +02:00
#include "util.hpp"
2020-06-04 11:46:35 +02:00
int debug;
void do_debugf(int level, const char *format, ...)
{
va_list args;
va_start(args, format);
if(debug >= level) {
vfprintf(stderr, format, args);
fflush(stderr);
}
va_end(args);
}
MsgException::MsgException(const std::string& msg, int code, bool is_perror)
2020-06-02 13:08:23 +02:00
: _msg(msg), _code(code)
{
_what = _msg;
if(_code != 0) {
if(is_perror) {
_what += ": ";
_what += strerror(errno);
}
2020-06-02 13:08:23 +02:00
char remainder[20];
sprintf(remainder, " (code %d)", _code);
_what += remainder;
}
}