A library for a decentralised peer-to-peer chat over IPv6 only.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

libchat6.h 280B

123456789101112131415
  1. #ifndef LC6_LIBCHAT6_H
  2. #define LC6_LIBCHAT6_H
  3. enum LIBCHAT_USER_STATUS {
  4. LC6_STATUS_OFFLINE = 0,
  5. LC6_STATUS_ONLINE,
  6. LC6_STATUS_AWAY,
  7. LC6_STATUS_TYPING
  8. };
  9. typedef void *LIBCHAT;
  10. LIBCHAT* libchat_init(char *path, unsigned char *password);
  11. #endif