PERFORCE change 144793 for review

Rui Paulo rpaulo at FreeBSD.org
Sun Jul 6 16:46:52 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=144793

Change 144793 by rpaulo at rpaulo_epsilon on 2008/07/06 16:45:54

	Add a couple more variables and correct the order.

Affected files ...

.. //depot/projects/soc2008/rpaulo-tcpad/tcpad.h#10 edit

Differences ...

==== //depot/projects/soc2008/rpaulo-tcpad/tcpad.h#10 (text+ko) ====

@@ -23,7 +23,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  *
- * $P4: //depot/projects/soc2008/rpaulo-tcpad/tcpad.h#9 $
+ * $P4: //depot/projects/soc2008/rpaulo-tcpad/tcpad.h#10 $
  */
 
 #ifndef _TCPAD_H_
@@ -45,13 +45,17 @@
 	/* TCP internal variables, from tcpcb */
 	int t_state;		/* TCP FSM state */
 	tcp_seq snd_una;
-	tcp_seq snd_max;
 	tcp_seq snd_nxt;
+	tcp_seq snd_wnd;
 	tcp_seq snd_up;
+	tcp_seq snd_wl1;
+	tcp_seq snd_wl2;
 	tcp_seq iss;
+
+	tcp_seq rcv_nxt;
+	tcp_seq rcv_wnd;
+	tcp_seq rcv_up;
 	tcp_seq irs;
-	tcp_seq snd_wnd;
-	tcp_seq rcv_wnd;
 
 	int isv6;
 	struct dumppkth *pktshead;


More information about the p4-projects mailing list