From cb1ba73e2ed543ef4fbc18808b12afc97e501955 Mon Sep 17 00:00:00 2001 From: Ivan Olexyn Date: Tue, 12 May 2020 01:37:47 +0200 Subject: [PATCH] ~ typo. --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 572d527..66103d2 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ ### About The goal of this project is to bypass the limitations caused by ISPs blocking incoming connections. -To do so have an adapter or reverse-proxy `reverse`. -It sends `Rides` to a forward-proxy servlet `forward`. -This servlet waits for a request, and fills the `Ride` with the request. -`reverse` can then forward the request to the `app`. +To do so, the proxy `reverse` is created. +`reverse` sends `Ride` objects to another proxy, which is called `forward`. +`forward` waits for a request from the `user`, +and inserts the request into the `Ride` object received form `reverse`. +The `Ride` object is then sent back to `reverse`. +`reverse` subsequently forwards the request contained in the `Ride` object to the `app`. Upon recieving a reply with data from `app`, `reverse` will forward this data to `forward`, -which in turn will finally forward it to `user`. +which in turn will finally forward it to the `user`.