linklayerprotocols/pppnif/te_ppp/te_vjcomp/config/TCSIM/t_vjbound_10.tcsim
changeset 0 af10295192d8
child 1 a579325b79dd
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // T_VJBOUND_10
       
    15 // Test Seq deltas (d) where d<-0x10000
       
    16 // tcsim input file to generate test data for VJ compression tests.
       
    17 // 
       
    18 //
       
    19 
       
    20 #include "packet.def"
       
    21 #include "ports.tc"
       
    22 
       
    23 dev eth0 100 Mbps {
       
    24     egress {
       
    25     }
       
    26 }
       
    27 
       
    28 // Packet to prime the compressor
       
    29 send TCP_PCK($ip_id=1 $ip_sum=0x66cc $tcp_sport = PORT_FTP_DATA $tcp_dport = 1234 $tcp_ACK=1 $tcp_seq=0x10000 $tcp_sum=0x65ea)
       
    30      0x31
       
    31 
       
    32 // Ack-0x10001 (wrap around)
       
    33 send TCP_PCK($ip_id=2 $ip_sum=0x66cb $tcp_sport = PORT_FTP_DATA $tcp_dport = 1234 $tcp_ACK=1 $tcp_seq=0xffffffff $tcp_sum=0x64eb)
       
    34      0x32
       
    35 
       
    36 // Ack-0x7fffffff
       
    37 send TCP_PCK($ip_id=3 $ip_sum=0x66ca $tcp_sport = PORT_FTP_DATA $tcp_dport = 1234 $tcp_ACK=1 $tcp_seq=0x80000000 $tcp_sum=0xe3ea)
       
    38      0x33
       
    39 
       
    40 end