I am trying to trigger an event on an embedded device (that runs a web server). This event can only be triggered by accessing a web page (HTTP protocol). So I just need to load a web page (for now I do it simply by copying the url link in my browser) to trigger the event I want (and I don't care about the content of the page).
What is the simplest way to do that in a C++ application running on a Linux (redhat) system ?
Do I have to use sockets ? Or is there a simpler way ?