schedule_accept(int fd, int (*handler)(int, FdEventHandlerPtr, AcceptRequestPtr), void *data) Apologies for seeming to avoid searching for an answer here but I don't know what the constructs are in order to search intelligently for them. Specifically I'm interested in what the second parameter means?
My best guess is it's an int (that refers to a memory location) that is composed(?) of a tuple of the three referred to types. Is this correct? If I was only interested in one of these (and I'm right in my description in the first place) how would I refer to it?
intand taking three parameters, the first beingint, the second being of typeFdEventHandlerPtr, and the third beingAcceptRequestPtr. For more information you need the actual definitions of types for the second and third parameters.