luksrku/msg.c
2016-09-22 20:40:58 +02:00

13 lines
236 B
C

#include <arpa/inet.h>
#include "msg.h"
void msg_to_nbo(struct msg_t *msg) {
msg->passphrase_length = htonl(msg->passphrase_length);
}
void msg_to_hbo(struct msg_t *msg) {
msg->passphrase_length = ntohl(msg->passphrase_length);
}