Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
113 views

Extra bytes when declaring a member of a struct as uint32_t

I have a problem when using the uint32_t type from the stdint.h library. If I run the following code (on Ubuntu linux 11.10 x86_64, g++ version 4.6.1): #include "stdint.h" #include <iostream> ...
1
vote
2answers
92 views

Using ntohl on Struct or Union

ntohl takes a uint32_t. I have messages with many different members (of type uint32_t or uint16_t). Is it possible to properly pass in the entire received struct or union and have it converted to say ...
0
votes
2answers
46 views

Using qsort to sort unsigned integers

The program that I am working on takes a file and parses it line by line then changes each line into a uint32_t and adds it into an array. From there I am supposed to sort the array with qsort(). I ...
0
votes
1answer
91 views

Converting uint32_t to network byte order

i'm doing stuff for my studies, so yeah, it's homework. First: I got a working Java Server Application, i also had this client application i'm writing in c now working in java. Simple as is, i fail ...
0
votes
2answers
51 views

Crypto++ convert Adler32 digest (byte array) to uint32_t

I have the following problem: I'm trying to calculate the adler32 checksum of a data block using Crypto++, but I get the wrong checksum after converting the byte[4] array output to a uint32_t. This ...