@@ -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
@@ -14772,9 +14773,9 @@ static word16 TLSX_GetMinSize_Client(word16* type)
1477214773 return 0 ;
1477314774 }
1477414775}
14775- #define TLSX_GET_MIN_SIZE_CLIENT TLSX_GetMinSize_Client
14776+ #define TLSX_GET_MIN_SIZE_CLIENT ( type ) TLSX_GetMinSize_Client(type)
1477614777#else
14777- #define TLSX_GET_MIN_SIZE_CLIENT (... ) 0
14778+ #define TLSX_GET_MIN_SIZE_CLIENT (type ) 0
1477814779#endif
1477914780
1478014781
@@ -14841,9 +14842,9 @@ static word16 TLSX_GetMinSize_Server(const word16 *type)
1484114842 return 0 ;
1484214843 }
1484314844}
14844- #define TLSX_GET_MIN_SIZE_SERVER TLSX_GetMinSize_Server
14845+ #define TLSX_GET_MIN_SIZE_SERVER ( type ) TLSX_GetMinSize_Server(type)
1484514846#else
14846- #define TLSX_GET_MIN_SIZE_SERVER (... ) 0
14847+ #define TLSX_GET_MIN_SIZE_SERVER (type ) 0
1484714848#endif
1484814849
1484914850
0 commit comments