aboutsummaryrefslogtreecommitdiff
path: root/utils/afl_network_proxy/afl-network-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/afl_network_proxy/afl-network-client.c')
-rw-r--r--utils/afl_network_proxy/afl-network-client.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/afl_network_proxy/afl-network-client.c b/utils/afl_network_proxy/afl-network-client.c
index 7d04a89a..1f04dd87 100644
--- a/utils/afl_network_proxy/afl-network-client.c
+++ b/utils/afl_network_proxy/afl-network-client.c
@@ -4,7 +4,7 @@
Written by Marc Heuse <mh@mh-sec.de>
- Copyright 2019-2022 AFLplusplus Project. All rights reserved.
+ Copyright 2019-2024 AFLplusplus Project. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -109,7 +109,7 @@ static void __afl_map_shm(void) {
if (id_str) {
#ifdef USEMMAP
- const char * shm_file_path = id_str;
+ const char *shm_file_path = id_str;
int shm_fd = -1;
unsigned char *shm_base = NULL;
@@ -209,13 +209,13 @@ static void __afl_end_testcase(int status) {
int main(int argc, char *argv[]) {
- u8 * interface, *buf, *ptr;
+ u8 *interface, *buf, *ptr;
s32 s = -1;
struct addrinfo hints, *hres, *aip;
- u32 * lenptr, max_len = 65536;
+ u32 *lenptr, max_len = 65536;
#ifdef USE_DEFLATE
- u8 * buf2;
- u32 * lenptr1, *lenptr2, buf2_len, compress_len;
+ u8 *buf2;
+ u32 *lenptr1, *lenptr2, buf2_len, compress_len;
size_t decompress_len;
#endif