Witness: enum witness_notifyResponse_type
[wireshark-wip.git] / asn1 / ros / ros-rej.cnf
blob96e114b45296f96bde7fcf24520d4446bcb3b362
1 # ros-rej.cnf
2 # ROS Reject common code
3 # Copyright 2007 Tomas Kukosa
4 # $Id$
6 #.FN_HDR Reject
7   const gchar *descr = "";
9   problem_str[0] = '\0';
10 #.FN_FTR Reject
11   descr = wmem_strdup_printf(wmem_packet_scope(), "REJ: %s", problem_str);
13   if (actx->rose_ctx->apdu_depth >= 0)
14     proto_item_append_text(proto_item_get_parent_nth(proto_tree_get_parent(tree), actx->rose_ctx->apdu_depth), "  %s", descr);
15   if (actx->rose_ctx->fillin_info)
16     col_append_str(actx->pinfo->cinfo, COL_INFO, descr);
17   if (actx->rose_ctx->fillin_ptr)
18     g_strlcat(actx->rose_ctx->fillin_ptr, descr, actx->rose_ctx->fillin_buf_size);
19 #.END