1
vote
Determining the TCP port number to which client got bound.
I believe that Darron meant getsockname(). This is what you want if you need to determine the port number on the client side (the side calling connect()) programmatically. …
1
vote
Passing pointers of arrays in C
I'm not sure what you are trying to do but the assignment of a pointer value to an array is what's bothering the compiler as mentioned by …
1
vote
Networking Framework for C++ (UDP or TCP)?
There are a bunch of frameworks out there (e.g., Poco, ACE). It depends o …
13
votes
.o files vs .a files
.o files are objects. They are the output of the compiler and input to the linker/librarian.
.a files are archives. They are groups of objects or static libraries …
-1
votes
warning: the use of `mktemp’ is dangerous
If you are statically linking the runtime, then the other option is to write your own version of mktemp in an object file. The linker should prefer your version over the runtime versio …
3
votes
Should network packet payload data be aligned on proper boundries?
We use packed structures that are overlaid directly over the binary packet in memory today and I am rueing the day that I decided to do that. The only way that we have gotten this to work is by: …
2
votes
How can you do C++ when your embedded compiler doesn’t have operator new or STL support?
I had a similar compiler that implemented a bizarre version of the Embedded-C++ standard. We had operator new which would c …
3
votes
How do I force 64 bit integer arithmetic on OS X?
If you are using C99, include stdint.h and use uint64_t and int64_t. Other than that, unsigned long long a = 0x100000000ull; should work too. …
3
votes
jpg file transfer using a socket_stream in C
JPEG images are nothing but a bunch of bytes organized according to the JPEG format. A network socket isn't going to organize random bytes into the JPEG format. You can send the bytes that make up …
0
votes
Set a FourCC value in C++
If I am not mistaken, you can just use multi-character character constants for that right?
unsigned int fourCC = 'blah';
This is perfectly valid by the ANSI/ISO sp …
5
votes
Calling a C++ Shared Lib within a C program…how to manage?
You might want to take a slightly different approach. Consider something like this for your C interface:
#ifdef __cplusplus
extern "C" {
#endif
struct UltrasoundHandle;
Ultrasound …
3
votes
Do I need a lock when only a single thread writes to a shared variable?
I would lock it down. I'm not sure how large float is in your environment, but it might not be read/written in a single instruction so your reader could potentially read a half-written …
4
votes
Using nibbles (4 bits variables) in windows C/C++
Everyone seems to like using bit-fields in structs for this. Personally, I wrap all of my packet code in objects so that you don't see the guts. The problem that I have found with usin …
4
votes
How could this C fragment be written more safely?
Ick... use strdup() like everyone else said and write it yourself if you have to. Since you have time to think about this now... check out the …
1
vote
What’s the correct way to use printf to print a size_t?
I think that the C++ answer is:
std::size_t n = 1;
std::cout << n;
For C-style IO it's a little more complicated. In C99 they added the z length …
