	;#
	;# 1.1
	;#
	;# Unless otherwise indicated all arrays below are indexed by
	;#	<IP src address>_<src port>_<IP dst address>_<dst port>
	;# If the array contains per-packet information, then _<pktno>
	;# is appended.  <pktno> is numbered from 1 to N for that particular
	;# connection.
	;#
	;# By convention I refer to the connection in one specific direction
	;# as a "half connection".
	;#
	;# HalfConnNames - misnomer.  Actually the sequence, ack and flags
	;# values of the first packet seen in this half-connection.
	global HalfConnNames
	;#
	;# HalfConnBytes - Total number of bytes sent in the lifetime of
	;# this half-connection.  Note: retransmissions increase this value.
	global HalfConnBytes
	;#
	;# HalfConnSegs - Total number of segments sent in this half-connection.
	global HalfConnSegs
	;#
	;# HalfConnDStart/HalfConnDend - The sequence number of the start of
	;# this segment, and first sequence number following the data in
	;# the specified segment.  Sequence numbers are relative to the first
	;# sequence number in this trace.  Note that this means the value
	;# could be negative, if a reordering or retransmission occurs at the
	;# start of a trace.
	global HalfConnDStart HalfConnDEnd
	;#
	;# HalfConnTime - the time of the specified segment on the given
	;# half-connection.
	global HalfConnTime
	;#
	;# HalfConnISS - Initial segment sequence number of the first
	;# segment in this half connection.
	global HalfConnISS
	;#
	;# HalfConnAck - the ACK value in each packet of a half-connection.
	;# Unlike DStart and DEnd this value is not biased to be from zero.
	global HalfConnAck
	;#
	;# HalfConnWin - The window advertised in the specified segment in
	;# the half-connection.
	global HalfConnWin
	;#
	;# HalfConnFlags - the flag bits active in the specified packet.
	;# Same style as "pget tcp pkt flags" returns: "ACK|PSH".
	;#
	global HalfConnFlags
