#ifndef SQUID_SRC_AUTH_QUEUENODE_H #define SQUID_SRC_AUTH_QUEUENODE_H namespace Auth { /** * A queue of auth requests waiting for verification to occur. * * Certain authentication schemes such a Basic and Bearer auth * permit credentials tokens to be repeated from multiple sources * simultaneously. This queue node allows multiple validation * queries to be collapsed into one backend helper lookup. * CBDATA and handlers stored in these queue nodes can be notified * all at once with a result when the lookup completes. */ class QueueNode { private: // we store CBDATA here, copy is not safe QueueNode(const QueueNode &); QueueNode &operator =(const QueueNode &); public: QueueNode(Auth::UserRequest *aRequest, AUTHCB *aHandler, void *aData) : next(NULL), auth_user_request(aRequest), handler(aHandler), data(cbdataReference(aData)) {} ~QueueNode() { cbdataReferenceDone(data); while (next) { QueueNode *tmp = next->next; next->next = NULL; delete next; next = tmp; }; } Auth::QueueNode *next; Auth::UserRequest::Pointer auth_user_request; AUTHCB *handler; void *data; MEMPROXY_CLASS(Auth::QueueNode); }; MEMPROXY_CLASS_INLINE(Auth::QueueNode); } // namespace Auth #endif /* SQUID_SRC_AUTH_QUEUENODE_H */