A library for a decentralised peer-to-peer chat over IPv6 only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 5 година
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