Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ RUN dnf -y update \
binutils-devel \
bison \
ca-certificates \
'clang-19.1.*' \
'llvm-19.1.*' \
clang \
llvm \
cmake \
cracklib-dicts \
diffutils \
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/container/QA_TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.4
2.0.5
2 changes: 1 addition & 1 deletion integration-tests/container/udp/udp-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static const char LOREM_IPSUM[] =
"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. "
"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n";
static const int LOREM_IPSUM_LEN = sizeof(LOREM_IPSUM) / sizeof(char);
static const size_t IOVEC_N = 32;
static const size_t IOVEC_N = 16;
static const size_t MMSGHDR_N = 32;

typedef enum send_method_e {
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/container/udp/udp-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <sys/types.h>

static const size_t BUF_SIZE = 4096;
static const size_t IOVEC_N = 32;
static const size_t IOVEC_N = 16;
static const size_t MMSGHDR_N = 32;
static bool running = true;

Expand Down
Loading