]> git.stg.codes - stg.git/blobdiff - projects/rlm_stg/stgpair.h
Final icing on rlm_stg.
[stg.git] / projects / rlm_stg / stgpair.h
index 046d06bfc2a71b7a62fea503c0eb815ad4b9c2c7..dba9e3eb4b5af5c1643337423f54c0392f8a3499 100644 (file)
@@ -1,16 +1,33 @@
 #ifndef __STG_STGPAIR_H__
 #define __STG_STGPAIR_H__
 
-#include <freeradius/libradius.h> // VALUE_PAIR
+#include <stddef.h>
 
 #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