'int' Unix to Linux!! Help!!


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat 'int' Unix to Linux!! Help!!
# 1  
Old 09-18-2009
'int' Unix to Linux!! Help!!

Hi!
I'm having some troubles to make a Unix system communicate with a Linux system, because the LSB and MSB of an 'int' is inverted in each other.
I can't use a Algorithm for Bit Reversal, because I would have to change a lot of the services that I use im my application.
Is there any way to change the LSB and MSB of the 'int' inside of Linux?

Sorry for my english mistakes, and sorry for may newbie explication. This is the first time that I'm using Linux this way.
# 2  
Old 09-18-2009
You mean you can't change the code, and want the system to somehow understand the layout of your packets and adjust it for you? That's not too likely since the system doesn't understand what layout of data you have, only your application.. you wouldn't want it to swap bytes in strings, for instance. If you can modify the code, see 'man htonl'. It would be safe to use it on both systems since it only reverses on systems where appropriate to do so.

A few processors like the G series can partially change whether they're LSB or MSB, but the emulation is imperfect and system-wide, you'd need a whole new operating system. (and of course a G3/4/5/POWER computer.)

This isn't a UNIX vs Linux thing, by the way. Linux can be found on MSB and LSB systems alike, it's the architecture its running under that's MSB or LSB.

Last edited by Corona688; 09-18-2009 at 06:30 PM..
# 3  
Old 09-21-2009
Okie, Corona688!
Thanks for your help. I think I'll have to change some of my app code, anyway. It will be veeeery boring, but I guess this is the only way.

Thanks!Smilie
# 4  
Old 09-21-2009
For your information, the standard convention is the big-endian on the network.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Fedora

Which is the better platform to learn UNIX/Linux (Kali Linux Vs. Red Hat or other)?

I just started a new semester and I started my UNIX class yesterday. I've already decided to use python along with my learning process but what I really want to use with it is Kali as my UNIX/Linux platform to learn off of since I already wanted to learn Cyber Sec. anyways. I just wanted to know if... (12 Replies)
Discussion started by: ApacheOmega
12 Replies

2. Programming

'int air_date' '%'?

int air_date='20100103'; //2010 - Jan - 03 /* My goal here is to subtract a day. */ int day = air_date % 100; //?????? Is this right? //Are there any functions time/date for this type of date format? :cool: (7 Replies)
Discussion started by: sepoto
7 Replies

3. Programming

Handle int listen(int sockfd, int backlog) in TCP

Hi, from the manual listen(2): listen for connections on socket - Linux man page It has a parameter called backlog and it limits the maximum length of queue of pending list. If I set backlog to 128, is it means no more than 128 packets can be handled by server? If I have three... (3 Replies)
Discussion started by: sehang
3 Replies

4. Shell Programming and Scripting

From string to int ?

hello guys i m new to shell scripting and can't find out why this structure is not right I m guessing this happens because $LINESUM is a string . so how can i do this ? i want my script to do so many loops as the number of the lines of one custom file. #!/bin/bash echo give me path name... (5 Replies)
Discussion started by: xamxam
5 Replies

5. Programming

int *ptr + max possible value

From reading my C book, Im aware that the integers have a maximum value which depends on what type of processor you are using (since they use 16-bit or 32-bit instructions). Now I know pointers are very flexible, since they can reference anything, but in the case of integer pointers, can they... (4 Replies)
Discussion started by: JamesGoh
4 Replies

6. UNIX for Dummies Questions & Answers

int open(const char *pathname, int flags, mode_t mode) doubt...

hello everybody! I want to create a file with permissions for read, write, and execute to everybody using C, so I write this code: #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int main(){ int fileDescriptor; fileDescriptor =... (2 Replies)
Discussion started by: csnmgeek
2 Replies

7. Programming

to get the correct value with unsigned int

hi, Please help me with the following code to get the difference in values. struct a{ int b1; int c1; char d1; } main() { unsigned int b=10; unsigned int c; c = b - (unsigned int )sizeof(a); printf("%d",c); } Here c returns some junk value. How can i get the... (2 Replies)
Discussion started by: naan
2 Replies

8. UNIX for Dummies Questions & Answers

can unix program declare int?

can unix program declare int??how to declare ? if i want to declare int and using read command then compare which int is small...how to do this??can somebody help me? (1 Reply)
Discussion started by: yeah016
1 Replies

9. Programming

difference between int ** func() and int *& func()

What is the difference between int** func() and int*& func(). Can you please explain it with suitable example. Thanks, Devesh. (1 Reply)
Discussion started by: devesh
1 Replies

10. Programming

Unsigned int

How can I store and/or print() a number that is larger than 4 294 967 295 in C? is int64_t or u_int64_t what I need ? if, so how can I printf it to stdout? (2 Replies)
Discussion started by: nimnod
2 Replies
Login or Register to Ask a Question