created new why2-chat module
This commit is contained in:
parent
9c29743968
commit
6348fab4d9
9
src/chat/README
Normal file
9
src/chat/README
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
WHY2-Chat's Client & Server
|
||||||
|
===========================
|
||||||
|
|
||||||
|
*In development, do not use.*
|
||||||
|
|
||||||
|
WHY2's Chat is another encrypted and completely private communication.
|
||||||
|
All messages are encrypted with WHY2 and only you know the key (even the server can't decrypt the messages).
|
||||||
|
|
||||||
|
I am not responsible for any abuse of privacy.
|
8
src/chat/client/main.c
Normal file
8
src/chat/client/main.c
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
printf("Here will be client...\n");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
8
src/chat/server/main.c
Normal file
8
src/chat/server/main.c
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
printf("Here will be server...\n");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user