answersLogoWhite

0


Best Answer

how many bit header Ip v4

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many bits does the DSCP use in the IP header?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many header are using in c programming?

No explicit limit, you can use so many header files as you want.


Why to use header file to easy know?

in the java as we use the inheritance property in the same way we can get the the inheritance property in c by using the prepared header files( .h files). there a single program in c use the many methods of many header files like math.h give us to use the use of floor(), sqrt() e.t.c. functions..


Why you use header files in c?

the use of header files is to add functionality. Header files are basically saying put code in that header file here so you don't have to type that many lines of code.


What is the use of DOS header files in graphics?

It shows the header information..


What are the pieces of communication in UDP called?

UDP, or User Datagram Protocol is a very simple communication protocol. It is a part of the Transport Layer of the OSI model - the same as the well known TCP. UDP is very straight forward, containing very few features. There is no hand shaking, no security, no ordering of packets and very little error detection (if any at all). The structure of a UDP packet is as follows: Bits 0-15: Source Port Number (optional - leave as all zeros if unused) Bits 16-31: Destination Port Number Bits 32-47: The length of the entire UDP datagram (note that the maximum size is 2^16-1) Bits 48-63: The checksum (optional under IPv4 - leave as all zeros if unused) Bits 64-??: The actual data. About the checksum: this is the confusing part about UDP. When a checksum is computed, the UDP software creates a fake header to include in the checksum calculation - but this fake header is not actually transmitted. The structure of this fake header (officially called the "pseudo header") is: For IPv4: Bits 0-31: Source IP address (taken from the IP header) Bits 32-63: Destination IP address (taken from the IP header) Bits 64-71: Reserved - leave as all zeros Bits 72-79: Protocol (taken from the IP header) Bits 80-95: Length (taken from the UDP datagram) Bits 96-??: The UDP datagram described above. For IPv6: Bits 0-127: Source IP address Bits 128-255: Destination IP Address Bits 256-287: Length Bits 288-311: Reserved (leave as all zeros) Bits 312-319: Next header Bits 320-???: The UDP datagram described above NOTES: -this is only the structure of the UDP packet - and does not include the IP header. -Since it is possible for the checksum to end up as 0, the standard dictates that a checksum of zero be changed to 0xFFFF in order not to confuse with a checksum field which is disabled. This is true even under IPv6, where the checksum MUST be used. A checksum field value of zero is an error and the datagram should be discarded. -UDP makes no guarantees that the datagram will arrive, nor does it make any guarantees about the order that the datagram arrives in. If the user wants these features, then these will need to be implemented by the applications using UDP to communicate, or use a different communication protocol such as TCP.


How many different tools use drill bits?

The only tool that uses drill bits is a drill. There are, however, many different types of drill bits. The drill bits vary by material, size, shape, and function.


What are the Names of header files in java?

Java doesn't use header files.


What is the use of header file stdbool.h?

stdbool header file use for a new data type that is boolean value


How many bits are it byte?

One BYTE is always 8 BITs. (Binary digITs) Some data protocols use a different number of bits to define a character, most systems today use 8 bits, some older systems used 5 bits or 7 bits. But a BYTE is always 8 bits regardless. (a NIBBLE is half a byte - 4 bits).


How can you put a header footer and content on the middle in HTML?

Header and Footer are not predefined in the HTML. However if you want to use it, then use jQuery for it.


How many bits does syskey use for encryption?

128 BIT-ENCRYPTION


How many bits does a Java char contain?

16 bits. Java char values (and Java String values) use Unicode.