mirror of
https://github.com/hufrea/byedpi.git
synced 2024-11-20 04:22:29 +00:00
Replace perror calls with uniperror
This commit is contained in:
parent
6b484d5988
commit
d8334865b4
6
main.c
6
main.c
@ -360,7 +360,7 @@ int main(int argc, char **argv)
|
||||
case 'l':
|
||||
fake_tls.data = ftob(optarg, &fake_tls.size);
|
||||
if (!fake_tls.data) {
|
||||
perror("read file");
|
||||
uniperror("read file");
|
||||
return -1;
|
||||
}
|
||||
break;
|
||||
@ -368,7 +368,7 @@ int main(int argc, char **argv)
|
||||
case 'o':
|
||||
fake_http.data = ftob(optarg, &fake_http.size);
|
||||
if (!fake_http.data) {
|
||||
perror("read file");
|
||||
uniperror("read file");
|
||||
return -1;
|
||||
}
|
||||
break;
|
||||
@ -376,7 +376,7 @@ int main(int argc, char **argv)
|
||||
case 'e':
|
||||
oob_data.data = ftob(optarg, &oob_data.size);
|
||||
if (!oob_data.data) {
|
||||
perror("read file");
|
||||
uniperror("read file");
|
||||
return -1;
|
||||
}
|
||||
break;
|
||||
|
8
proxy.c
8
proxy.c
@ -529,7 +529,7 @@ static inline int on_tunnel(struct poolhd *pool, struct eval *val,
|
||||
|
||||
val->size = n - sn;
|
||||
if (!(val->tmpbuf = malloc(val->size))) {
|
||||
perror("malloc");
|
||||
uniperror("malloc");
|
||||
return -1;
|
||||
}
|
||||
memcpy(val->tmpbuf, buffer + sn, val->size);
|
||||
@ -552,19 +552,19 @@ int event_loop(int srvfd)
|
||||
|
||||
struct poolhd *pool = init_pool(params.max_open * 2 + 1);
|
||||
if (!pool) {
|
||||
perror("init pool");
|
||||
uniperror("init pool");
|
||||
close(srvfd);
|
||||
return -1;
|
||||
}
|
||||
if (!add_event(pool, EV_ACCEPT, srvfd, 0)) {
|
||||
perror("add event");
|
||||
uniperror("add event");
|
||||
destroy_pool(pool);
|
||||
close(srvfd);
|
||||
return -1;
|
||||
}
|
||||
char *buffer = malloc(params.bfsize);
|
||||
if (!buffer) {
|
||||
perror("malloc");
|
||||
uniperror("malloc");
|
||||
destroy_pool(pool);
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user