X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/83c4a22d73f9801ced3c29e664e2c000535a0965..65a51d11c64daa4df3d4388df60bb4efc3e67e14:/projects/rlm_stg/stgpair.h diff --git a/projects/rlm_stg/stgpair.h b/projects/rlm_stg/stgpair.h index 046d06bf..dba9e3eb 100644 --- a/projects/rlm_stg/stgpair.h +++ b/projects/rlm_stg/stgpair.h @@ -1,16 +1,33 @@ #ifndef __STG_STGPAIR_H__ #define __STG_STGPAIR_H__ -#include // VALUE_PAIR +#include #define STGPAIR_KEYLENGTH 64 #define STGPAIR_VALUELENGTH 256 +#ifdef __cplusplus +extern "C" { +#endif + typedef struct STG_PAIR { char key[STGPAIR_KEYLENGTH]; char value[STGPAIR_VALUELENGTH]; } STG_PAIR; -int emptyPair(const STG_PAIR* pair); +typedef struct STG_RESULT { + STG_PAIR* modify; + STG_PAIR* reply; +} STG_RESULT; + +inline +int emptyPair(const STG_PAIR* pair) +{ + return pair != NULL && pair->key[0] != '\0' && pair->value[0] != '\0'; +} + +#ifdef __cplusplus +} +#endif #endif