On 14/03/2013, at 5:13 PM, "Owens, Steve" <[email protected]> wrote:
> In looking at the following documentation: > http://trafficserver.apache.org/docs/trunk/sdk/io-guide/transformations.en.html > > It would seem that the only mention of TSVConnWrite is to a single parameter > method. > > Yet in my plugin I am using > > data->output_vio = TSVConnWrite(output_conn, contp, data->output_reader, > INT64_MAX); > > What has changed about this method? > > What does it actually do? It schedules data to be written to the VConnection. > > Do I need to call it every time the plugin is re-enabled? Or can I just call > it once? I don't know that I really understand the question, but if the length is INT64_MAX you would only call it once. If you want you can call it a multiple times with shorter lengths. J
