Qt Sockets Programming
So, doing sockets in C++, is Qt the best option? I was looking around online, and it seems that's what people are recommending.
Also, it wouldn't be anything like making connections to websites, it's sending TCP packets with messages is them directly to a computer.
The thing is, I'm wagering your research was centered around sending packets of information to and from a server. The issue with this is it encompasses lower level protocols like UDP/TCP, which you probably don't need. In addition, QT is a UI framework?
If you're looking to send HTTP packets, why not just use curl?
The thing is, I'm wagering your research was centered around sending packets of information to and from a server. The issue with this is it encompasses lower level protocols like UDP/TCP, which you probably don't need. In addition, QT is a UI framework?
If you're looking to send HTTP packets, why not just use curl?
First of all, even you're having the double posting glitch? I hate it, it's so annoying, it just started for me a few days ago.
Also, a friend of mine told me that Qt has awesome libraries for doing network stuff though, so I wasn't sure.
They're not HTTP packets, I was bored so I figured I'd try to make a simple little TCP Chat server. Any tips?