Hamza
Hamza

Reputation: 21

Control internet connection

I am trying to develop an application (C++/Qt preferably for multi-platform) that controls and filters the data stream entering and leaving the network (mainly internet), and restricts access to certain URLs in the browser.

Is that possible with Qt? If not are there libraries that can do this? Or are there any APIs that I can use to control the connection on the computer?

Upvotes: 2

Views: 292

Answers (1)

Aniket Inge
Aniket Inge

Reputation: 25695

To control access to internet, the best possible way is to write your own DNS server and then point the current dns server to self. This although will be very complicated, this is one of the many ways to do it.

Upvotes: 2

Related Questions