473,473 Members | 2,160 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

bitfield diagram - interpretation welcomed!

Hi all,

A workmate was recently bitching to me about an RFC.

(Apologies - the RFC number eludes me at present (it's related to the
DIAMETER protocol, that's all I can remember) but I will try to find
out and update the thread.)

He was moaning how the RFC laid out the description of an 8-bit
field. According to him, the diagram was (fixed-width font required,
but it won't really matter, and I've omitted the schematic-like use of
-,| and + that the RFCs usually use):

0 1 2 3 4 5 6 7
F F X X X Y Y Y P

The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?

We work with network protocol specfications, so suffice to say this
lack of precision was surprising to him (and on his relaying the
story, is surprising to me). He has already found products during
interop testing with the two different interpretations.

This is apparently an early draft of the RFC, and he will be
requesting clarification, but I was wondering what your people's take
on it was? How would you intepret this?

Thanks in advance,
Doug

May 18 '07 #1
13 1884
On 18 May, 21:08, Doug <DougTheS...@googlemail.comwrote:

<snip>
0 1 2 3 4 5 6 7
F F X X X Y Y Y P
Ahem, please ignore the 'P'. 'P'retend it isn't there.

Thanks,
Doug

May 18 '07 #2
Ahem,

Please ignore me completely. The bitfield diagram appears within a
PDU diagram, the bit numbering is completely normal for an RFC.

My apologies for wasting your time and bandwidth.

Doug

May 18 '07 #3
In article <11**********************@k79g2000hse.googlegroups .com>,
Doug <Do*********@googlemail.comwrote:
Hi all,
A workmate was recently bitching to me about an RFC.
(Apologies - the RFC number eludes me at present (it's related to the
DIAMETER protocol, that's all I can remember) but I will try to find
out and update the thread.)
He was moaning how the RFC laid out the description of an 8-bit
field. According to him, the diagram was (fixed-width font required,
but it won't really matter, and I've omitted the schematic-like use of
-,| and + that the RFCs usually use):
0 1 2 3 4 5 6 7
F F X X X Y Y Y P
The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

HTH

--
Mitch

te************@sand-hill.freeserve.co.uk
www.sand-hill.freeserve.co.uk/terminal_crazy

May 18 '07 #4
On 18 May, 21:43, Terminal Crazy <Terminal_Cr...@sand-
hill.freeserve.co.ukwrote:
In article <1179518886.836471.287...@k79g2000hse.googlegroups .com>,
Doug <DougTheS...@googlemail.comwrote:


Hi all,
A workmate was recently bitching to me about an RFC.
(Apologies - the RFC number eludes me at present (it's related to the
DIAMETER protocol, that's all I can remember) but I will try to find
out and update the thread.)
He was moaning how the RFC laid out the description of an 8-bit
field. According to him, the diagram was (fixed-width font required,
but it won't really matter, and I've omitted the schematic-like use of
-,| and + that the RFCs usually use):
0 1 2 3 4 5 6 7
F F X X X Y Y Y P
The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

HTH

--
Mitch
Hi Mitch,

Thanks for your reply.

Actually, in this case - and I thought the same as you when my
workmate described this to me - bit 0 in that diagram is actually the
MSB. The context I was missing (but have since found in a code
comment) is that it appears within an RFC digram of a PDU. These
diagrams assume 8 bit bytes, and are written left to right 0, 1,
2, ... usually to 32/64, so the diagram lines up nicely over multiple
rows. The numbering doesn't reflect the MSB/LSB ordering - the right-
most bit in each octet in the diagram is still the LSB.

Sorry for any confusion!

Thanks,
Doug

May 18 '07 #5
Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
In article <11**********************@k79g2000hse.googlegroups .com>,
>The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.
Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.
--
Comp-sci PhD expected before end of 2007
Seeking industrial or academic position *outside California* in 2008
May 18 '07 #6
Ben Pfaff wrote, On 18/05/07 22:18:
Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
>In article <11**********************@k79g2000hse.googlegroups .com>,
>>The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?
It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.
It's not only IBM that use 0 as the MSB. To confuse things further I've
seen documents numbering bits from 1.

Moral of the story, always read the full specification and never assume
you know what it will say in advance.
--
Flash Gordon
May 18 '07 #7
Ben Pfaff wrote:
Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
>In article <11**********************@k79g2000hse.googlegroups .com>,
>>The odd thing for him (and me) was the ordering of the bit
numbers in the diagram - increasing from left to right.
According to him, there was absolutely no description of what
this diagram meant. In other words, is the 0-bit in the diagram
the Most Significant Bit, or the Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.
Also the HP3000.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

May 19 '07 #8

"CBFalconer" <cb********@yahoo.comwrote in message
news:46***************@yahoo.com...
Ben Pfaff wrote:
>Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
>>In article <11**********************@k79g2000hse.googlegroups .com>,

The odd thing for him (and me) was the ordering of the bit
numbers in the diagram - increasing from left to right.
According to him, there was absolutely no description of what
this diagram meant. In other words, is the 0-bit in the diagram
the Most Significant Bit, or the Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.

Also the HP3000.
Of course C was not the language of choice on the HP3000. :-)
May 19 '07 #9

"Ben Pfaff" <bl*@cs.stanford.eduwrote in message
news:87************@blp.benpfaff.org...
Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
>In article <11**********************@k79g2000hse.googlegroups .com>,
>>The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.
Which is precisely why the protocols are not defined based upon
the architecture of the transceivers. CBFalconer has stated below
that the HP3000 was "backward", but the network devices
connected to its system bus were not necessarily :-).
May 19 '07 #10
Barry wrote:
"Ben Pfaff" <bl*@cs.stanford.eduwrote in message
><Te************@sand-hill.freeserve.co.ukwrites:
>><11**********************@k79g2000hse.googlegrou ps.com>,

The odd thing for him (and me) was the ordering of the bit
numbers in the diagram - increasing from left to right.
According to him, there was absolutely no description of what
this diagram meant. In other words, is the 0-bit in the
diagram the Most Significant Bit, or the Least Significant Bit?

It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.

Which is precisely why the protocols are not defined based upon
the architecture of the transceivers. CBFalconer has stated below
that the HP3000 was "backward", but the network devices
connected to its system bus were not necessarily :-).
This exchange illustrates NOT assuming message visibility. My
message hasn't even appeared here yet. I assume it will in a day
or two. :-(

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

May 19 '07 #11
Barry wrote:
>
"CBFalconer" <cb********@yahoo.comwrote in message
news:46***************@yahoo.com...
Ben Pfaff wrote:
[...]
>It doesn't matter, bit 0 is always the lowest.

Most of the world agrees, but IBM mainframers number their bits
"backward", so that bit 0 is the MSB.
Also the HP3000.

Of course C was not the language of choice on the HP3000. :-)
My first exposure to computers was, I believe, an HP-3000. I forget
the exact model number. I never actually saw the machine, either,
as it was in some other city at the other end of a telephone line.
The only language we had access to was some primitive form of BASIC.

On the other hand, I still recall the login:

HELLO-B669,<password>

(I still use that password on some systems.)

--
+-------------------------+--------------------+-----------------------+
| Kenneth J. Brody | www.hvcomputer.com | #include |
| kenbrody/at\spamcop.net | www.fptech.com | <std_disclaimer.h|
+-------------------------+--------------------+-----------------------+
Don't e-mail me at: <mailto:Th*************@gmail.com>
May 21 '07 #12
Terminal Crazy <Te************@sand-hill.freeserve.co.ukwrites:
In article <11**********************@k79g2000hse.googlegroups .com>,
Doug <Do*********@googlemail.comwrote:
>Hi all,
>A workmate was recently bitching to me about an RFC.
>(Apologies - the RFC number eludes me at present (it's related to the
DIAMETER protocol, that's all I can remember) but I will try to find
out and update the thread.)
>He was moaning how the RFC laid out the description of an 8-bit
field. According to him, the diagram was (fixed-width font required,
but it won't really matter, and I've omitted the schematic-like use of
-,| and + that the RFCs usually use):
>0 1 2 3 4 5 6 7
F F X X X Y Y Y P
>The odd thing for him (and me) was the ordering of the bit numbers in
the diagram - increasing from left to right. According to him, there
was absolutely no description of what this diagram meant. In other
words, is the 0-bit in the diagram the Most Significant Bit, or the
Least Significant Bit?


It doesn't matter, bit 0 is always the lowest.
Did you mean the least significant? Not so.

I came across some IBM stuff recently where bit 0 was the MSB. Really. I
was shocked.
May 21 '07 #13
Terminal Crazy wrote:
>
.... snip ...
>
It doesn't matter, bit 0 is always the lowest.
Except on machines where it isn't.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

May 22 '07 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Maria | last post by:
Heya, I am doing some background reading about the database and i am a little bit confused, i would appreciated any help.... Assume been asked to draw the ER diagram for the following...
9
by: Davide Bruzzone | last post by:
Greetings all... I need to create a number of bitfield structs whose contents are smaller than the size of an int. For example: typedef struct foo FOO; struct foo { unsigned char fieldOne:...
4
by: Ray | last post by:
When a single-bit bitfield that was formed from an enum is promoted/cast into an integer, does ANSI C say anything about whether that integer should be signed or unsigned? SGI IRIX cc thinks it is...
3
by: Andy Venikov | last post by:
Sometimes you want to use a bitfield to hold an enum value. In such cases you would only use as many bits as are needed to encode the full set of enum values. And it is a pain to recompute and...
4
by: | last post by:
Hi, How do we marshall a type like this from a C++/CLI class wrapper to an unmanaged method? typedef struct { UINT32 blah : 1; UINT32 blah2 : 1; UINT32 blah3: 1;
2
by: sangu_rao | last post by:
Hi, I have to prepare an ER diagram for the objects in my SQL Server database. I have used the option "DIAGRAMS" in EnterPrise Manager of SQL Server 2000. It is creating the diagram for the...
7
by: arne | last post by:
Hi all, cleaning up some elderly code, I stumbled across the following: /**************************************************/ struct { uint bf:8; char a1; char a2;
70
by: Anson.Stuggart | last post by:
I'm designing a debounce filter using Finite State Machine. The FSM behavior is it follows the inital input bit and thinks that's real output until it receives 3 consecutive same bits and it...
6
by: shaun roe | last post by:
For a bit of seasonal festive fun, I thought I'd try making a bitfield function, i.e. a function returning, for example, the value of bits 1 to 5 of a word as an integer, when the exact bits are...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.