User Tools

Site Tools


cookbooks:devel:pseudovariables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
cookbooks:devel:pseudovariables [2021/07/27 15:51]
miconda [$rpl(key)]
cookbooks:devel:pseudovariables [2021/07/30 12:38]
miconda [Send Data Attributes]
Line 1199: Line 1199:
 } }
 </code> </code>
 +===== Header Field Iterator =====
 +
 +====== $hfitname(iname) ======
 +
 +The header name of the header field iterator.
 +
 +Example:
 +
 +<code c>
 +    hf_iterator_start("i1");
 +    while(hf_iterator_next("i1")) {
 +        xlog("hdr[$hfitname(i1)] is: $hfitbody(i1)\n");
 +    }
 +    hf_iterator_end("i1");
 +</code>
 +
 +====== $hfitbody(iname) ======
 +
 +The header body of the header field iterator.
 +
 +Example:
 +
 +<code c>
 +    hf_iterator_start("i1");
 +    while(hf_iterator_next("i1")) {
 +        xlog("hdr[$hfitname(i1)] is: $hfitbody(i1)\n");
 +    }
 +    hf_iterator_end("i1");
 +</code>
 +
 +===== Body Line Iterator =====
 +
 +====== $blitval(iname) ======
 +
 +The value of the body line iterator.
 +
 +Example:
 +
 +<code c>
 +    bl_iterator_start("b1");
 +    while(bl_iterator_next("b1")) {
 +        xlog("body line: $blitval(b1)");
 +    }
 +    bl_iterator_end("b1");
 +</code>
 +
 +
 ===== Send Data Attributes ===== ===== Send Data Attributes =====
  
cookbooks/devel/pseudovariables.txt ยท Last modified: 2022/04/11 15:24 by henningw