Tagged Questions
0
votes
2answers
67 views
Copying a struct with dynamic array into a buffer in c
I want to manually build a dns query to the dns sever using socket APIs (it's part of the project and can not be changed). So I want to copy a struct like:
typedef struct {
uint16_t ...
0
votes
0answers
33 views
Does union require explicit packing?
I came across the following piece of code. I was wonder whether we need to specify that the union is packed ? Will the compiler ever do packing for unions ? If so, could u give some examples ?
...
3
votes
1answer
386 views
Reading serialized C++ structs in C# using BinaryReader
I've got a few files that have been serialized by directly writing C++ structs using a binary fstream. Now, when I generate the read methods for corresponding C# classes, I find out that these don't ...
5
votes
3answers
607 views
Why does a struct consisting of a char, short, and char (in that order), when compiled in C++ with 4-byte packing enabled, come to a 6-byte struct?
I thought I understood how C/C++ handled struct member alignment. But I'm getting strange results for a particular arrangement in Visual Studio 2008 and 2010.
Specifically, I'm finding that a struct ...
5
votes
3answers
278 views
binary16 in Python
The struct module is useful when you're trying to convert data to and from binary formats. However, recently I came across a file format specification that uses the binary16 floating point format. I ...
6
votes
4answers
2k views
Union and struct packing problem
I'm writing some software where each bit must be exact(it's for the CPU) so __packed is very important.
typedef union{
uint32_t raw;
struct{
unsigned int present:1;
unsigned int rw:1;
unsigned ...
7
votes
9answers
3k views
Getting different header size by changing window size
I have a C++ program representing a TCP header as a struct:
#include "stdafx.h"
/* TCP HEADER
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...