Sponsored Content
Full Discussion: AIX endian again
Top Forums UNIX for Advanced & Expert Users AIX endian again Post 18027 by Perderabo on Friday 22nd of March 2002 08:13:36 AM
Old 03-22-2002
First, let's tackle TCP/IP and octets and integers. Not all computers have 8 bit bytes. Some weirdos have 6 bit bytes. I only one I know of is the CDC Cyber series, but I believe that there are more. Or were. Most everyone agrees on 8 bit bytes these days. But the designers of TCP/IP wanted it to work on all computers. They use the term octet as a politically correct term for an 8 bit quantity. TCP/IP does not deal with 8 octet integers. But it does have 2 octet integers which it called "short", and 4 octet integers which it calls "long". Both longs and shorts travel over the wire big-endian. But both are placed on the wire and extracted from it via macros. The macros are called ntohl, htonl, ntohs, and htons. (ntohl, for example, means network to host long). On hp-ux, just type "man htonl" to see a man page on them. These macros solve the problem of integers across a network. On a big-endian system like HP, they are just null macros and are removed by the pre-processor. On some other systems they expand into whatever is required.

It is obvious that this concept can be expanded in both directions. I would write new macros for 8 byte integers. And if I really needed it, I would write macros for bytes as well. It isn't hard to reverse the bits in a byte if that is truely required.

I have never worked with HDLC, and I just looked it up. I can't find proof of this, but I remain skeptical that it reverses its bytes. But if you are dumping data into the information frames with the bytes reversed, I guess that you are stuck with it.

Anyway, what is an application program doing using HDLC? HDLC is a level 2 protocol. That makes as much sense as an application program opening the ethernet device and writing its own ethernet frames. When you do stuff like that, it really starts to sound like you are talking to a directly attached device rather than using a network. Could you describe your network topology?
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Endian issues in TCP/IP

Hello, Can anybody tell me whether the little endian-big endian issues will affect porting from True64 to HP UNIX or TCP/IP will take care of that? If it affects what can be the solution. Thank you, (3 Replies)
Discussion started by: informshilpa
3 Replies

2. Programming

Big and Little Endian

We are developing an application using TLI for network communication.The Server Code is developed in Sun and client in SCO unix. When we route data from Client to Server we encrypt the data using DES algotithm utility.The problem we are facing that Sun uses Big Endian methodology to store data in... (1 Reply)
Discussion started by: S.P.Prasad
1 Replies

3. UNIX for Advanced & Expert Users

Endian Conversion

Hi everybody, I met this week a problem. For now, we used TRU64 system based on alpha. Now, we're installing UP-UX systems (on Itanium). And we have problem with our files. Indeed, we use file with COMP-3, COMP-5 data. These files are used on both platforms. (we use also TXT files which... (1 Reply)
Discussion started by: bigmike59270
1 Replies

4. UNIX for Dummies Questions & Answers

Little Endiean and Big Endian

Dear Friends, I have one question in my mind. That question is "how to detect whether the system is little endiean or big endian" Processing the bit position is the difference between this endians. But I could not understand how to find the pariticular sytem works... (3 Replies)
Discussion started by: Nirmal Babu
3 Replies

5. UNIX and Linux Applications

Migrating Oracle from Big Endian to Little Endian Platorm

Hi, We are trying to migrate an oracle database from Sun Solaris (SunOS 5.9 Generic_118558-28 sun4u sparc SUNW,Ultra-60) to Linux 2.6.18-53.1.19.el5 #1 SMP Tue Apr 22 03:01:10 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux which is basically a Big Endian to Little Endian conversion. We shutdown... (3 Replies)
Discussion started by: luft
3 Replies

6. Solaris

question about the little-endian in sparc

hi folks, in the sparc v9 manul , it says it is possible to access the memory data in little-endian mode, but there is only privilaged instruction that could set the PSTATE ( the cle bit ) regist. if I'm in the user mode , is it possible for me to access the data in little-endian mode? (10 Replies)
Discussion started by: zerocool_08
10 Replies

7. UNIX and Linux Applications

Endian vs pfsense??

Hi Endian firewall free version if we do compare pfsense For a LAN network with active user 1000 Which do you recommend Share (0 Replies)
Discussion started by: mnnn
0 Replies
htonl(3)						     Library Functions Manual							  htonl(3)

NAME
htonl - Converts an unsigned 32-bit integer from host byte order to Internet network-byte order LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <arpa/inet.h> in_addr_t htonl ( in_addr_t hostint) ; STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: htonl(): XNS4.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies a 32-bit integer in host byte order. DESCRIPTION
The htonl() (host-to-network long) function converts an unsigned 32-bit integer from host byte order to Internet network-byte order. The Internet network requires address and port reference data in network-byte order. Use the htonl() function to convert address and port integers from Internet host byte order to Internet network-byte ordered integers. RETURN VALUES
Upon successful completion, the htonl() function returns a 32-bit integer in Internet network-byte order. ERRORS
Current industry standards do not define error values for the htonl() function. RELATED INFORMATION
Functions: endhostent(3), endservent(3), htons(3), ntohl(3), ntohs(3) Standards: standards(5) Network Programmer's Guide delim off htonl(3)
All times are GMT -4. The time now is 11:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy