Open gcbork opened 8 years ago
I've taken note and will look it as soon as I can. AFAIK there should not be any static or threadstatic members that could cause this, but I need to take a careful look.
Hello Jonas,
Any update on this one?
Regards, Gerhard
Will try it with the new networking code. Sorry for the delay ;)
Hello,
I have the web server sample code running. (Program2 from http://blog.gauffin.org/2014/05/griffin-framework-performant-networking-in-net/#more-4822) I modified it to do SSL and print out the http method and the IP address. Here is the complete code:
I have two additional computers. On one (with IP .147) I am running a client that sends a POST message every 2 seconds. On the other one (with IP .55) I am running Apache Bench with:
ab -n 500 -r -f SSL3 https://185.185.185.136:8443/
The server output is this:
Got GET request from 185.185.185.55 Got POST request from 185.185.185.147 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got POST request from 185.185.185.147 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got POST request from 185.185.185.147 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got POST request from 185.185.185.147 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55 Got POST request from 185.185.185.55 Got POST request from 185.185.185.55 Got GET request from 185.185.185.55 Got GET request from 185.185.185.55
The two lines in bold font make me really worried. How can that be? ApacheBench that runs on computer .55 does not send POST messages. On other tries I got the reverse, GET messages from .147. Could it be that something gets mixed up between threads?
Regards, Gerhard.