A library for a decentralised peer-to-peer chat over IPv6 only.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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