You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flowsynth has the tcp.initialize option for flow declarations to automatically build the three way handshake for a TCP connection.
This is a request to support a similar tcp.close option that would add the (four way) TCP close sequence to model graceful connection closing. Since session teardown can be initiated by the server or client, you will want to be able to specify the initiator. One way would be to add the following options:
tcp.close.client;
tcp.close.server;
and have them supported in a Flow Declaration. For example:
Flowsynth has the
tcp.initialize
option for flow declarations to automatically build the three way handshake for a TCP connection.This is a request to support a similar
tcp.close
option that would add the (four way) TCP close sequence to model graceful connection closing. Since session teardown can be initiated by the server or client, you will want to be able to specify the initiator. One way would be to add the following options:and have them supported in a Flow Declaration. For example:
Or you could do it in an Event Declaration where the direction of the event determines the initiator of the connection close. For example:
It could be argued that the connection close is more of a flow action than an event action and so using the Flow Declaration is more appropriate.
As part of this work, it may make sense to add support for
tcp.flags.fin
but that could be a separate feature.The text was updated successfully, but these errors were encountered: