boot net: Style fixes

Fix style issue, pointed out by Axel.

No functional changes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38456 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Andreas Färber
2010-08-30 18:50:14 +00:00
parent 6bb481c714
commit 30743318f1
+2 -4
View File
@@ -168,8 +168,7 @@ struct ip_header {
// User Datagram Protocol (UDP) // User Datagram Protocol (UDP)
// UDP header (RFC 768) // UDP header (RFC 768)
struct udp_header struct udp_header {
{
uint16 source; // source port uint16 source; // source port
uint16 destination; // destination port uint16 destination; // destination port
uint16 length; // length of UDP packet (header + data) uint16 length; // length of UDP packet (header + data)
@@ -180,8 +179,7 @@ struct udp_header
// Transmission Control Protocol (TCP) // Transmission Control Protocol (TCP)
// TCP header (RFC 793, RFC 3168) // TCP header (RFC 793, RFC 3168)
struct tcp_header struct tcp_header {
{
uint16 source; // source port uint16 source; // source port
uint16 destination; // destination port uint16 destination; // destination port
uint32 seqNumber; // sequence number uint32 seqNumber; // sequence number