Changeset f1848d6 in mainline
- Timestamp:
- 2010-02-12T13:47:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4be390b
- Parents:
- 04729b1e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip_client.c
r04729b1e rf1848d6 63 63 header = ( ip_header_ref ) data; 64 64 header->header_length = IP_COMPUTE_HEADER_LENGTH( sizeof( ip_header_t ) + ipopt_length ); 65 header->ttl = ttl ? (( ttl<= MAXTTL ) ? ttl : MAXTTL ) : IPDEFTTL;65 header->ttl = ( ttl ? ttl : IPDEFTTL ); //((( ttl ) <= MAXTTL ) ? ttl : MAXTTL ) : IPDEFTTL; 66 66 header->tos = tos; 67 67 header->protocol = protocol;
Note:
See TracChangeset
for help on using the changeset viewer.