From b47b0eab286b448df56a38d4d6972b1b619a070c Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Wed, 21 Feb 2024 22:28:29 -0500 Subject: [PATCH] Added new exception constants --- includes/exception_consts.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/exception_consts.hpp b/includes/exception_consts.hpp index f418e99..c2bca97 100644 --- a/includes/exception_consts.hpp +++ b/includes/exception_consts.hpp @@ -6,5 +6,7 @@ static const int EXCEPT_TOOFEWARGS = 15; static const int EXCEPT_INVALIDARGS = 20; static const int EXCEPT_ADDRNOTAVAIL = 25; static const int EXCEPT_INVALIDIP = 30; +static const int EXCEPT_GENSOCKERR = 35; +static const int EXCEPT_WRONGRESPONSE = 40; #endif