Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: theclam/stripe
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: chemag/stripe
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 24, 2017

  1. Configuration menu
    Copy the full SHA
    98b7318 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d42c250 View commit details
    Browse the repository at this point in the history
  3. stripe: bug on GTP decapsulation

    Next decap was using vlen - pos, where vlen is the GTP length
    field (GTP payload length, not including the GTP header itself),
    and pos is the GTP header length (8 for short GTP headers).
    Therefore it was discounting the GTP header from the payload
    twice.
    
    Right value is length - pos.
    chemag committed Apr 24, 2017
    Configuration menu
    Copy the full SHA
    1a94f96 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e8f1f5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    69e490e View commit details
    Browse the repository at this point in the history
  6. stripe: remove padding

    This was padding small TCP headers (i.e. 20-byte IP plus 40-byte TCP).
    chemag committed Apr 24, 2017
    Configuration menu
    Copy the full SHA
    c7b43c0 View commit details
    Browse the repository at this point in the history
  7. stripe: support '-' for stdin/stdout

    Requires moving all output to stderr.
    
    Tested:
    
    $ cat one.pcap | ./stripe -f -r - -w - > /tmp/la2
    Reassembly disabled...
    
    Decapsulating...
    
    1 frames processed.
    $ file /tmp/la2
    file /tmp/la2
    /tmp/la2: tcpdump capture file (little-endian) - version 2.4 (Linux "cooked", capture length 200)
    chemag committed Apr 24, 2017
    Configuration menu
    Copy the full SHA
    55dfbcb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b801b3d View commit details
    Browse the repository at this point in the history
Loading