summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/ros/ros-rej.cnf
blob: 9b7a7639cecc1f417e19a47356885ce2dbdcd4b3 (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(actx->pinfo->pool, "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)
    (void) g_strlcat(actx->rose_ctx->fillin_ptr, descr, actx->rose_ctx->fillin_buf_size);
#.END