From fc1771ef7029b25c6a48eabb53adced0824c81ab Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Fri, 22 Apr 2016 15:00:29 +0500 Subject: [PATCH 1/4] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 089ca83..d163640 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,13 @@ Here is basic workflow: The listener server catches http traffic and sends it to ![Diagram](http://i.imgur.com/9mqj2SK.png) +## Want to Upgrade? + +I also sell Gor Pro, extensions to Gor which provide more features, a commercial-friendly license and allow you to support high quality open source development all at the same time. Please see the Gor [homepage](http://gortool.com) for more detail. + +Subscribe to the [quarterly newsletter](https://tinyletter.com/gor) to stay informed about the latest features and changes to Gor and its bigger siblings. + + ## Examples ### Capture traffic from port From e0e065ba8a5b091e1963c5ad8e9fcdbaebed603e Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 23 Apr 2016 09:36:33 +0500 Subject: [PATCH 2/4] Fix license name --- COM-LICENSE => COMM-LICENSE | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename COM-LICENSE => COMM-LICENSE (100%) diff --git a/COM-LICENSE b/COMM-LICENSE similarity index 100% rename from COM-LICENSE rename to COMM-LICENSE From 3c40ac7ab6f16d031a397d3d12273efc3a47f17a Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 23 Apr 2016 09:38:46 +0500 Subject: [PATCH 3/4] Fix input dummy spec --- input_dummy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input_dummy.go b/input_dummy.go index 632fb2f..935c16a 100644 --- a/input_dummy.go +++ b/input_dummy.go @@ -35,7 +35,7 @@ func (i *DummyInput) emit() { case <-ticker.C: uuid := uuid() reqh := payloadHeader(RequestPayload, uuid, time.Now().UnixNano()) - i.data <- append(reqh, []byte("POST /pub/WWW/å HTTP/1.1\r\nHost: www.w3.org\r\nUser-Agent: Go 1.1 package http\r\nAccept-Encoding: gzip\r\nContent-Length: 7\r\n\r\na=1&b=2")...) + i.data <- append(reqh, []byte("GET /HTTP/1.1\r\nHost: www.w3.org\r\nUser-Agent: Go 1.1 package http\r\nAccept-Encoding: gzip\r\n\r\n")...) resh := payloadHeader(ResponsePayload, uuid, 1) i.data <- append(resh, []byte("HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n")...) From 3d7455d6c149bcc77b142cf30fbdab498d36bf9f Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sat, 23 Apr 2016 18:35:17 +0500 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d163640..03bdd80 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/buger/gor.png?branch=master)](https://travis-ci.org/buger/gor) [![codebeat](https://codebeat.co/badges/6427d589-a78e-416c-a546-d299b4089893)](https://codebeat.co/projects/github-com-buger-gor) [![Go Report Card](https://goreportcard.com/badge/github.com/buger/gor)](https://goreportcard.com/report/github.com/buger/gor) [![Join the chat at https://gitter.im/buger/gor](https://badges.gitter.im/buger/gor.svg)](https://gitter.im/buger/gor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![GitHub release](https://img.shields.io/github/release/buger/gor.svg?maxAge=2592000)]() [![Build Status](https://travis-ci.org/buger/gor.png?branch=master)](https://travis-ci.org/buger/gor) [![codebeat](https://codebeat.co/badges/6427d589-a78e-416c-a546-d299b4089893)](https://codebeat.co/projects/github-com-buger-gor) [![Go Report Card](https://goreportcard.com/badge/github.com/buger/gor)](https://goreportcard.com/report/github.com/buger/gor) [![Join the chat at https://gitter.im/buger/gor](https://badges.gitter.im/buger/gor.svg)](https://gitter.im/buger/gor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ## About