aboutsummaryrefslogtreecommitdiff
path: root/lib/include/net
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-09-26 00:31:15 -0400
committerIan Moffett <ian@osmora.org>2024-09-26 00:31:15 -0400
commitb132db61e45603878944e2cd11ea9334838d274d (patch)
tree5f05adf47dda300bd08dc6eb3796e24011214b2b /lib/include/net
parent1c630b1722da9a6c15e206f0405e36468f1a48f1 (diff)
project: Use unsigned byte for data
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/include/net')
-rw-r--r--lib/include/net/stpsession.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/include/net/stpsession.h b/lib/include/net/stpsession.h
index 6564cc4..1b22e1b 100644
--- a/lib/include/net/stpsession.h
+++ b/lib/include/net/stpsession.h
@@ -66,10 +66,10 @@
* R: Reserved, keep zero.
*/
struct session_request {
- char hash[64];
+ uint8_t hash[64];
uint8_t options;
- char pubkey[32];
- char pad[8];
+ uint8_t pubkey[32];
+ uint8_t pad[8];
} PACKED;
#endif /* STP_SESSION_H_ */