summaryrefslogtreecommitdiff
path: root/include/ouroboros/serdes-oep.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ouroboros/serdes-oep.h')
-rw-r--r--include/ouroboros/serdes-oep.h33
1 files changed, 23 insertions, 10 deletions
diff --git a/include/ouroboros/serdes-oep.h b/include/ouroboros/serdes-oep.h
index c503b31a..4409b047 100644
--- a/include/ouroboros/serdes-oep.h
+++ b/include/ouroboros/serdes-oep.h
@@ -30,18 +30,31 @@
/* Enrollment */
-/* no structs yet for req and ack. TODO: authentication. */
+#define ENROLL_ID_LEN 8
+
+struct enroll_req {
+ /* TODO: Authentication */
+ uint8_t id[ENROLL_ID_LEN];
+};
struct enroll_resp {
- struct timespec t;
- int response;
- struct ipcp_config conf;
+ uint8_t id[ENROLL_ID_LEN];
+ struct timespec t;
+ int response;
+ struct ipcp_config conf;
+};
+
+struct enroll_ack {
+ uint8_t id[ENROLL_ID_LEN];
+ int result;
};
-ssize_t enroll_req_ser(buffer_t buf);
+ssize_t enroll_req_ser(const struct enroll_req * req,
+ buffer_t buf);
-int enroll_req_des(const buffer_t buf);
+int enroll_req_des(struct enroll_req * req,
+ const buffer_t buf);
ssize_t enroll_resp_ser(const struct enroll_resp * resp,
buffer_t buf);
@@ -49,10 +62,10 @@ ssize_t enroll_resp_ser(const struct enroll_resp * resp,
int enroll_resp_des(struct enroll_resp * resp,
buffer_t buf);
-ssize_t enroll_ack_ser(const int response,
- buffer_t buf);
+ssize_t enroll_ack_ser(const struct enroll_ack * ack,
+ buffer_t buf);
-int enroll_ack_des(int * response,
- const buffer_t buf);
+int enroll_ack_des(struct enroll_ack * ack,
+ const buffer_t buf);
#endif /* OUROBOROS_LIB_SERDES_OEP_H*/ \ No newline at end of file