aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlogin.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-06-14 01:56:28 +0000
committerMichael Mann <mmann78@netscape.net>2013-06-14 01:56:28 +0000
commitfa5b45834b3199bc3c47b3d328d54e0504d7b942 (patch)
tree721daa2acddb00e486c5c62923f7b6841b4c13eb /epan/dissectors/packet-rlogin.c
parent0f0c111119811cf1c6c9353efdaaef302aca5930 (diff)
Remove check_col() and the occasional tree.
svn path=/trunk/; revision=49921
Diffstat (limited to 'epan/dissectors/packet-rlogin.c')
-rw-r--r--epan/dissectors/packet-rlogin.c95
1 files changed, 43 insertions, 52 deletions
diff --git a/epan/dissectors/packet-rlogin.c b/epan/dissectors/packet-rlogin.c
index 6a2b217c4e..8332f03096 100644
--- a/epan/dissectors/packet-rlogin.c
+++ b/epan/dissectors/packet-rlogin.c
@@ -225,11 +225,8 @@ static void rlogin_display(rlogin_hash_entry_t *hash_info,
proto_tree_add_item(rlogin_tree, hf_control_message, tvb,
urgent_offset, 1, ENC_BIG_ENDIAN);
control_byte = tvb_get_guint8(tvb, urgent_offset);
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO,
+ col_append_fstr(pinfo->cinfo, COL_INFO,
" (%s)", val_to_str_const(control_byte, control_message_vals, "Unknown"));
- }
offset = urgent_offset + 1; /* adjust offset */
}
@@ -366,11 +363,8 @@ static void rlogin_display(rlogin_hash_entry_t *hash_info,
offset += 2;
/* Show setting highlights in info column */
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " (rows=%u, cols=%u)",
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (rows=%u, cols=%u)",
rows, columns);
- }
}
if (tvb_offset_exists(tvb, offset))
@@ -414,63 +408,60 @@ dissect_rlogin(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
col_set_str(pinfo->cinfo, COL_PROTOCOL, "Rlogin");
/* Set info column */
- if (check_col(pinfo->cinfo, COL_INFO))
+ /* Show user-name if available */
+ if (hash_info->user_name[0])
+ {
+ col_add_fstr(pinfo->cinfo, COL_INFO,
+ "User name: %s, ", hash_info->user_name);
+ }
+ else
{
- /* Show user-name if available */
- if (hash_info->user_name[0])
+ col_clear(pinfo->cinfo, COL_INFO);
+ }
+
+ /* Work out packet content summary for display */
+ length = tvb_length(tvb);
+ if (length != 0)
+ {
+ /* Initial NULL byte represents part of connection handshake */
+ if (tvb_get_guint8(tvb, 0) == '\0')
{
- col_add_fstr(pinfo->cinfo, COL_INFO,
- "User name: %s, ", hash_info->user_name);
+ col_append_str(pinfo->cinfo, COL_INFO,
+ (pinfo->destport == RLOGIN_PORT) ?
+ "Start Handshake" :
+ "Startup info received");
}
else
+ if (tcpinfo->urgent && length >= tcpinfo->urgent_pointer)
{
- col_clear(pinfo->cinfo, COL_INFO);
+ /* Urgent pointer inside current data represents a control message */
+ col_append_str(pinfo->cinfo, COL_INFO, "Control Message");
}
-
- /* Work out packet content summary for display */
- length = tvb_length(tvb);
- if (length != 0)
+ else
{
- /* Initial NULL byte represents part of connection handshake */
- if (tvb_get_guint8(tvb, 0) == '\0')
- {
- col_append_str(pinfo->cinfo, COL_INFO,
- (pinfo->destport == RLOGIN_PORT) ?
- "Start Handshake" :
- "Startup info received");
- }
- else
- if (tcpinfo->urgent && length >= tcpinfo->urgent_pointer)
+ /* Search for 2 consecutive ff bytes
+ (signifies window change control message) */
+ ti_offset = tvb_find_guint8(tvb, 0, -1, 0xff);
+ if (ti_offset != -1 &&
+ tvb_bytes_exist(tvb, ti_offset + 1, 1) &&
+ tvb_get_guint8(tvb, ti_offset + 1) == 0xff)
{
- /* Urgent pointer inside current data represents a control message */
- col_append_str(pinfo->cinfo, COL_INFO, "Control Message");
+ col_append_str(pinfo->cinfo, COL_INFO, "Terminal Info");
}
else
{
- /* Search for 2 consecutive ff bytes
- (signifies window change control message) */
- ti_offset = tvb_find_guint8(tvb, 0, -1, 0xff);
- if (ti_offset != -1 &&
- tvb_bytes_exist(tvb, ti_offset + 1, 1) &&
- tvb_get_guint8(tvb, ti_offset + 1) == 0xff)
+ /* Show any text data in the frame */
+ int bytes_to_copy = tvb_length(tvb);
+ if (bytes_to_copy > 128)
{
- col_append_str(pinfo->cinfo, COL_INFO, "Terminal Info");
- }
- else
- {
- /* Show any text data in the frame */
- int bytes_to_copy = tvb_length(tvb);
- if (bytes_to_copy > 128)
- {
- /* Truncate to 128 bytes for display */
- bytes_to_copy = 128;
- }
-
- /* Add data into info column */
- col_append_fstr(pinfo->cinfo, COL_INFO,
- "Data: %s",
- tvb_format_text(tvb, 0, bytes_to_copy));
+ /* Truncate to 128 bytes for display */
+ bytes_to_copy = 128;
}
+
+ /* Add data into info column */
+ col_append_fstr(pinfo->cinfo, COL_INFO,
+ "Data: %s",
+ tvb_format_text(tvb, 0, bytes_to_copy));
}
}
}