Archived Forum Post

Index of archived forum posts

Question:

HTTP clearing all data?

Jul 15 '15 at 09:46

My multithreaded application creates 1 http chilkat object within the thread. I do not create and dispose of the object until the thread finishes.. because I need the session to continue through out the thread's processing. My questions is, if QuickGetStr and AddQuickHeader are called many times.. will result/header data keep building on top of itself, insense causing a memory issue? If so.. how can I clean them?


Accepted Answer

AddQuickHeader replaces the header if it already exists -- so nothing accumulates.

Nothing should accumulate with QuickGetStr either..