Hi<div><br></div><div>I disabled automatic MIME header addition using the API "vortex_profiles_set_automatic_mime". Now I am not able to send NUL frame to the remote peer.</div><div><br></div><div>I debugged vortex code to find the reason. Here is what I found out.</div>
<div>I invoke "vortex_channel_finalize_ans_rpy" API that internally invokes "__vortex_channel_common_rpy" with message size as zero, message as NULL and feeder also as NULL. Because automatic MIME header addition is disabled the following condition in "__vortex_channel_common_rpy" function fails.</div>
<div>"if (feeder == NULL && (message != NULL || data->message_size > 0))"</div><div>So it enters the ELSE where it finds that feeder is NULL. Hence the application crashes.</div><div><br></div><div>
Thanks</div><div>Subrahmanya</div>