A library for a decentralised peer-to-peer chat over IPv6 only.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

lc6_msg.h 549B

123456789101112131415
  1. #ifndef LC6_MSG_H
  2. #define LC6_MSG_H
  3. #include "../inc/lc6_common.h"
  4. void lc6msg_tlv_add_utf8(LC6_MSG *msg, int type, int length, void *value);
  5. void lc6msg_tlv_add_uuid(LC6_MSG *msg, int type, int length, void *value);
  6. void lc6msg_tlv_add_binary(LC6_MSG *msg, int type, int length, void *value);
  7. void lc6msg_tlv_add_ipport(LC6_MSG *msg, int type, LC6_IPADDR *ip, uint16_t port);
  8. void lc6msg_tlv_add_integer(LC6_MSG *msg, int type, uint64_t value);
  9. void lc6msg_tlv_append(LC6_MSG *msg, LC6_MSG_TLV *tlv);
  10. void lc6msg_tlv_free(LC6_MSG *msg);
  11. #endif