Skip to content

Tags: jilinhao/goreplay

Tags

1.3.3

Toggle 1.3.3's commit message
Fix: message size check in timeout test (#1014)

Fix message size check in `TestMessageTimeoutReached`. Since the message parser has parsed two packets of size 63 << 10, then the message size should be 63 << 11

v1.3.2

Toggle v1.3.2's commit message
capture nics (#1000)

1. move the `isDevice(l.host, pi)` to be first, as no need to iterate on all nics if it returns `true`
2. first compare by name, as same nics will have same names
3. if not found by name, compare by ips.

the bug was the `strings.HasPrefix`
2 different nics with ipv6:
```
#nic1 ip: f1234::55
#nic2 ip: f1234::55::66::66
```

so because of the `strings.HasPrefix` it was evaluated as the name nics. but they are not.

v1.3.1

Toggle v1.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #992 from buger/fix/989-duplicate

Issue was introduced while fixing windows probelabs/goreplay@c9274ac

Added exception for Windows, which by default allows interfaces without IPs.
Interface name check moved higher, so if interface namee or IP match, rest of check will be ignored.

Additionally windows npcap loopback mechanism can now be picked by specifying 127.0.0.1 or loopback IP.

Fix #989

v1.3.0

Toggle v1.3.0's commit message
Fix windows loopback

Windows loopback do not have addresses

v1.3.0_RC11

Toggle v1.3.0_RC11's commit message
Fix windows loopback

Windows loopback do not have addresses

v1.3.0_RC6

Toggle v1.3.0_RC6's commit message
Fix MacOS builds

v1.3.0_RC5

Toggle v1.3.0_RC5's commit message
Ignore deb files

v1.3.0_RC4

Toggle v1.3.0_RC4's commit message
Merge branch 'DimaGolomozy-more-exact-bpf-filter'

v1.3.0_RC1

Toggle v1.3.0_RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add githubAction to build & push docker image on github release publi…

…shed event. (#881)

fixes #880 👍 

Update Dockerfile
- fix alpine image version
- add RELEASE_VERSION build arg

Add githubAction to build & push docker image on github release published event
- add github workflow file
- add dependabot file to automatically propose PRs on githubActions version update*

> ⚠️ *Note1: you will have to add `DOCKERHUB_USERNAME` and `DOCKERHUB_TOKEN` as github secrets in order for the 
> ⚠️ *Note2: github dependabot support must be enabled in order for this action to work
githubAction to be able to login to the dockerHub and push images on it 👍
> *Note3:  we can add other dependabot entries in order to update Go modules and Dockerfile base images 👍 (i.e `FROM` parts)

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make makefile release commands reentrant and the move the binary name…

…… (#815)

Improved the Makefile:
* Fixed release-* commands fail when running the second time
* Added command to create only the binary executable on mac
* Moved binary name to a variable
* Fixed hardcoded container name