* @brief a quick utility function to get next duplicate header. */
| 216 | * @brief a quick utility function to get next duplicate header. |
| 217 | */ |
| 218 | static TSMLoc |
| 219 | nextDuplicate(TSMBuffer buffer, TSMLoc hdr, TSMLoc field) |
| 220 | { |
| 221 | TSMLoc next = TSMimeHdrFieldNextDup(buffer, hdr, field); |
| 222 | TSHandleMLocRelease(buffer, hdr, field); |
| 223 | return next; |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * @brief Append cookies by following the rules specified in the cookies config object. |
no test coverage detected