- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: C++ program
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:09 AM
04-17-2008 03:09 AM
C++ program
If client connect to server, server will inform the client which versions it supports, for example server will inform with a min version="9.2.1.1000" and max version "9.6.100.9999" . The client need to compare these version with its buid version. Let say client build version is 9.3.1.9999 , it will say its will connect or otherwise it will not connect or its not compatible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:27 AM
04-17-2008 03:27 AM
Re: C++ program
What architecture do you want to use?
(there are many different frameworks available)
There are so many examples on the net, just try to search for example:
"c++ socket programing"
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:33 AM
04-17-2008 03:33 AM
Re: C++ program
" If client connect to server, server will inform the client which versions it supports, for example server will inform with a min version="9.2.1.1000" and max version "9.6.100.9999" . The client need to compare these version with its buid version. Let say client build version is 9.3.1.9999 , it will say its will connect or otherwise it will not connect or its not compatible."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:42 AM
04-17-2008 03:42 AM
Re: C++ program
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:47 AM
04-17-2008 03:47 AM
Re: C++ program
This sure sounds like a homework assignment. I agree with Torsten, a Google search will yield lots of examples. In a search I performed, here are just two:
http://www.rites.uic.edu/~solworth/sockets.pdf
http://tldp.org/LDP/LG/issue74/tougher.html
Since you specifically mention Linux platforms, you will undoubtedly be using the GNU compiler instead of an HP-UX one. You might be better advised, therefore, to direct your questions to that forum, too.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 03:54 AM
04-17-2008 03:54 AM
Re: C++ program
http://en.wikipedia.org/wiki/Berkeley_sockets
http://en.wikipedia.org/wiki/Unix_domain_socket
http://en.wikipedia.org/wiki/Internet_socket
http://en.wikipedia.org/wiki/Remote_Procedure_Call
http://en.wikipedia.org/wiki/Common_Object_Request_Broker_Architecture
Come back if you need more ...
Have fun!
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 05:03 AM
04-17-2008 05:03 AM
Re: C++ program
I know am asking too much
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2008 05:07 AM
04-17-2008 05:07 AM
Re: C++ program
> It would be great if someone provide with code, I know am asking too much
Well, now, I suggest that you begin with some of the links provided already. There is code too, therein.
Regards!
...JRF...