* Destroy object which called method belongs to.
*/
DESTROY_ME,
+
+ /**
+ * Another call to the method is required.
+ */
+ NEED_MORE,
};
/**
void *clalloc(void *pointer, size_t size);
/**
+ * Same as memcpy, but XORs src into dst instead of copy
+ */
+void memxor(u_int8_t dest[], u_int8_t src[], size_t n);
+
+/**
* Special type to count references
*/
typedef volatile u_int refcount_t;