How can I build a private network for users of my C++ software?

0
2
Asked By CleverNerd42 On

I'm working on a project where I want to create a text-based operating system in C++, licensed under CC BY-NC 4.0. I'm envisioning a command that clears the screen and activates a forum that acts like an internal network for logged-in users. Each user would have an account that connects to a web of modems and routers, linking the public internet with a private network. The communication between these nodes would be secured with a firewall that encrypts user messages, splitting them into smaller packets for efficient transmission. I'm looking for advice on how to accomplish this with a focus on learning and achieving my goals. Any tips?

1 Answer

Answered By TechWhiz99 On

It seems like you may need to strengthen your understanding of networking and distributed systems first. A good place to start is to learn about how computers communicate, including basic TCP/IP protocols. This background will give you a solid foundation for your project.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.