A library for a decentralised peer-to-peer chat over IPv6 only.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

5 anos atrás
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