mbuet2ner / JEasyCrypto

A project for educational purposes for the course "Open Source Software Development" at the University of Oulu
GNU General Public License v3.0
2 stars 23 forks source link

UDP should be replaced with TCP #10

Open anttijuu opened 5 years ago

anttijuu commented 5 years ago

Connection between client and server is done using UDP. UDP is

So TCP should be used instead. This is more reliable and also enables us using secure sockets - currently all text send by users is open to read by anyone.

However, this would require refactoring the server implementation with session objects etc. So requires considerable work and Java/socket programming skills.