aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ros/ros-rej.cnf
blob: 2b991b9d13439455ac448d9b6d2fe54254b0346f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# ros-rej.cnf
# ROS Reject common code
# Copyright 2007 Tomas Kukosa

#.FN_HDR Reject
  const gchar *descr = "";

  problem_str[0] = '\0';
#.FN_FTR Reject
  descr = wmem_strdup_printf(wmem_packet_scope(), "REJ: %s", problem_str);

  if (actx->rose_ctx->apdu_depth >= 0)
    proto_item_append_text(proto_item_get_parent_nth(proto_tree_get_parent(tree), actx->rose_ctx->apdu_depth), "  %s", descr);
  if (actx->rose_ctx->fillin_info)
    col_append_str(actx->pinfo->cinfo, COL_INFO, descr);
  if (actx->rose_ctx->fillin_ptr)
    g_strlcat(actx->rose_ctx->fillin_ptr, descr, actx->rose_ctx->fillin_buf_size);
#.END