472,958 Members | 2,228 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

htonl problem

Suppose I had the following code:

unsigned int a = 0xb07b6fde;
unsigned long b = htonl(a);
b = b >> 4;
printf("int: %d\n", b);
printf("hex: %x\n", b);

printf("\n");

unsigned int c = 0xb07b6fde;
unsigned long d = htonl(c) >> 4;
printf("int: %d\n", d);
printf("hex: %x\n", d);

The output would be:
int: 233240507
hex: de6f7bb

int: -35194949
hex: fde6f7bb

Why is the second result different? As far as I know, >> for signed numbers uses arithmetic shift while that for unsigned uses logical shift. htonl() supposedly returns uint32_t which is unsigned.

Also if <netinet/in.h> is included, the second result would be the same as the first....
Feb 18 '08 #1
2 7257
weaknessforcats
9,208 Expert Mod 8TB
htonl() converts between the byte order of a server to the TCP/IP network's byte order. In the case of a Windows server this is a conversion between little endian and big endian.

After htonl() call, the variable, in the case of Windows, is big endian but any functions will see it as little endian. Result: Garbage.

I have no idea what your shifting is about,. Especially 4 bits.
Feb 18 '08 #2
I forgot to mention, this was in Linux, btw. The four bits shift to the right is part of the program's requirement.
Feb 19 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in...
11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
117
by: Peter Olcott | last post by:
www.halting-problem.com
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
2
by: linuxer | last post by:
Hello all, I have the following program, which will take ipv4 address as input in command line and convert it from host byte order to network byte order. I need similar thing to be done for IPv6....
1
by: Tom Impelluso | last post by:
Hello, I am aware of the need for ntohl and htonl. But floats? I am aware of Beej's (Brian "Beej Jorgensen" Hall) implementation:...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.