@@ -7168,15 +7168,16 @@ static int TLSX_CA_Names_Parse(WOLFSSL *ssl, const byte* input,
71687168 return 0 ;
71697169}
71707170
7171- #define CAN_GET_SIZE TLSX_CA_Names_GetSize
7172- #define CAN_WRITE TLSX_CA_Names_Write
7173- #define CAN_PARSE TLSX_CA_Names_Parse
7171+ #define CAN_GET_SIZE (data ) TLSX_CA_Names_GetSize(data)
7172+ #define CAN_WRITE (data , output ) TLSX_CA_Names_Write(data, output)
7173+ #define CAN_PARSE (ssl , input , length , isRequest ) \
7174+ TLSX_CA_Names_Parse(ssl, input, length, isRequest)
71747175
71757176#else
71767177
7177- #define CAN_GET_SIZE () 0
7178- #define CAN_WRITE () 0
7179- #define CAN_PARSE () 0
7178+ #define CAN_GET_SIZE (data ) 0
7179+ #define CAN_WRITE (data , output ) 0
7180+ #define CAN_PARSE (ssl , input , length , isRequest ) 0
71807181
71817182#endif
71827183
@@ -14762,9 +14763,9 @@ static word16 TLSX_GetMinSize_Client(word16* type)
1476214763 return 0 ;
1476314764 }
1476414765}
14765- #define TLSX_GET_MIN_SIZE_CLIENT TLSX_GetMinSize_Client
14766+ #define TLSX_GET_MIN_SIZE_CLIENT ( type ) TLSX_GetMinSize_Client(type)
1476614767#else
14767- #define TLSX_GET_MIN_SIZE_CLIENT () 0
14768+ #define TLSX_GET_MIN_SIZE_CLIENT (type ) 0
1476814769#endif
1476914770
1477014771
@@ -14831,9 +14832,9 @@ static word16 TLSX_GetMinSize_Server(const word16 *type)
1483114832 return 0 ;
1483214833 }
1483314834}
14834- #define TLSX_GET_MIN_SIZE_SERVER TLSX_GetMinSize_Server
14835+ #define TLSX_GET_MIN_SIZE_SERVER ( type ) TLSX_GetMinSize_Server(type)
1483514836#else
14836- #define TLSX_GET_MIN_SIZE_SERVER () 0
14837+ #define TLSX_GET_MIN_SIZE_SERVER (type ) 0
1483714838#endif
1483814839
1483914840
0 commit comments