aboutsummaryrefslogtreecommitdiff
path: root/src/auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/auth.h')
-rw-r--r--src/auth.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/auth.h b/src/auth.h
index 462e77b..ad09236 100644
--- a/src/auth.h
+++ b/src/auth.h
@@ -7,8 +7,10 @@
#pragma once
+#define MAX_RESPONSE_SIZE 128
+
typedef struct {
- char *response_buffer;
+ char response_buffer[MAX_RESPONSE_SIZE];
int response_code;
} auth_prompt_response_t;