473,748 Members | 2,173 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Are there standard C++ networking classes?

I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

Also, can someone tell me where I can find a comprehensive
class reference?
-Thanks

Jul 23 '05 #1
6 2831
"James Egan" <je******@comca st.net> wrote in message
news:pa******** *************** *****@comcast.n et...
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?
There is no standard networking library for C++.
Also, can someone tell me where I can find a comprehensive
class reference?


Google is your friend.

- JFA1
Jul 23 '05 #2
James Egan wrote in news:pa******** *************** *****@comcast.n et in
comp.lang.c++:
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

There are non currently, however boost:

http://www.boost.org/more/mailing_lists.htm#main

do seem to want to write one:

http://www.crystalclearsoftware.com/...pl?BoostSocket
http://www.crystalclearsoftware.com/...l?Multiplexing
http://www.crystalclearsoftware.com/...ki.pl?BoostNet
Also, can someone tell me where I can find a comprehensive
class reference?


Class reference for what ?

Rob.
--
http://www.victim-prime.dsl.pipex.com/
Jul 23 '05 #3
sam
James Egan wrote:
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

Also, can someone tell me where I can find a comprehensive
class reference?

You may consider ACE/TAO is a powerful solution.

Sam.
-Thanks

Jul 23 '05 #4
ÓÚ Sun, 17 Apr 2005 20:37:14 +0800£¬samдµ½£ º
James Egan wrote:
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

Also, can someone tell me where I can find a comprehensive
class reference?

You may consider ACE/TAO is a powerful solution.

Sam.

ACE/TAO is powerful, but it is too big and too complicated.
-Thanks


Jul 23 '05 #5
sam
jame wrote:
ÓÚ Sun, 17 Apr 2005 20:37:14 +0800£¬samдµ½£ º

James Egan wrote:
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

Also, can someone tell me where I can find a comprehensive
class reference?
You may consider ACE/TAO is a powerful solution.

Sam.


ACE/TAO is powerful, but it is too big and too complicated.

It is big in a development platform. But looks alright after compiled
into binary. I don't think it is too complicated. Its design is
reasonable and very good for project reusability and scalability.

Sam.
-Thanks


Jul 23 '05 #6

"James Egan" <je******@comca st.net> wrote in message
news:pa******** *************** *****@comcast.n et...
I've seen some networking toolkits for C++, but was wondering
if there were (or plans for) a standard set of networking
classes for C++?

Not at this time, no.
Also, can someone tell me where I can find a comprehensive
class reference?


The C++ language does not have a "class reference", because it has no "class
library" like you might find in Java or C#. There is the "Standard Template
Library" (or just "STL"), which defines some templates (for things like
streams, containers, etc.). You might want to get a book on that subject.

If you're using some third-party class library (including
compiler-vendor-provided ones like MFC with VC++), then their documentation
is where to look.

Otherwise, there is no class reference for C++.

-Howard

Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
2270
by: skoco | last post by:
Hello! Do you know when will be the new standard for c++ approved? And WHAT will be inside? Hope there will be some thread and synchro classes, text and XML parsing, new containers and other new things. God save me from coding in boring & slow & no pointers java!! p.s.: how much time usually needs the compiler vendors to implement new standards? p.s.2: anybody knows which compiler supports export keyword? Thanks to you all.
15
416
by: Bonj | last post by:
Hi I'd like a way of communicating over a network that doesn't rely on vendor-specific libraries, preferably that will work on both windows and linux (the ideal solution would be one that compiles on windows and linux, but the absolute ideal one would be one that also enables windows to communicate *with* linux in realtime, but that's a pipe dream as yet...) Nothing too fancy, the amounts of data won't be great. Just open a connection on...
43
5012
by: Steven T. Hatton | last post by:
Now that I have a better grasp of the scope and capabilities of the C++ Standard Library, I understand that products such as Qt actually provide much of the same functionality through their own libraries. I'm not sure if that's a good thing or not. AFAIK, most of Qt is compatable with the Standard Library. That is, QLT can interoperate with STL, and you can convert back and forth between std::string and Qt::QString, etc. Are there any...
7
8926
by: Brian Keogh | last post by:
Hi, I'm a student learning TCP/IP networking at University. Although I understand all about TCP/IP Networking in Java I am expected to understand the basics of C with regard to these programs as all the examples in my course notes and Exams refer to C. Can someone please point me in the right direction to where I might find answers on the web explaining C code involved with TCP/IP networking and what they mean. These are quite basic I'm...
16
1558
by: Spiros Bousbouras | last post by:
There are several compilers which accept various extensions to the C language and produce native code. But I wonder if there are any which offer the option to translate from C with some extensions to standard C.
9
2822
by: Grizlyk | last post by:
Somebody have offered std colors to C++ in the msg here: http://groups.google.com/group/comp.lang.c++/browse_frm/thread/2e5bb3d36ece543b/1acf6cd7e3ebdbcd#1acf6cd7e3ebdbcd The main objection to the including "colors markup" is useless of the marks, the marks is unneccessary extra information. The most used way to make colored view of C++ programs is usage of classes of C++ language words (already included in C++): reserved words, user...
23
1790
by: June Lee | last post by:
is it true that Standard C++ Library is pretty much include functions similar to the following java packages??? java.io java.lang java.util http://www.cplusplus.com/reference/ It seem to me the Standard C++ Library have headers to mainipulate
5
2011
by: disappearedng | last post by:
Hi guys, I am planning to write a web crawler in standard C. I can't seem to find standard libraries provided by C that deals with networks and regular expression. Anyone here knows a good engine that deals with regular expression in C and/or functions that deals with networking in standard C?
18
2454
by: Stephan Beal | last post by:
Hi, all! Before i ask my question, i want to clarify that my question is not about the code i will show, but about what the C Standard says should happen. A week or so ago it occurred to me that one can implement a very basic form of subclassing in C (the gurus certainly already know this, but it was news to me). What i've done (shown below) seems to work all fine and well, and does exactly what i'd expect, but i'm asking about
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9552
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9326
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9249
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8245
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6076
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4877
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3315
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2215
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.