In file include/snoop.h: A Buffalo Snooper interprocess message.
-
long id
- Type of message.
-
int func
- Identifier of the function call.
-
int comment
- A comment about this call, if anything is not quite by the book.
-
int msglen
- Length of the message regarding this function call
-
char msg[1]
- Actual string message.
Documentation
A Buffalo Snooper interprocess message.
SysV IPC limits the maximum size, so the
message is never longer than 4080 bytes.
long id
-
Type of message.
Currently either MSG_LOG or MSG_QUIT.
In the latter case, the spy should stop reading
messages and delete the queue from memory.
int func
-
Identifier of the function call.
Uses a lookup table from the library.
int comment
-
A comment about this call, if anything is not
quite by the book.
Uses a lookup table from the library.
If the arguments to the function call are fine,
no comment will be made. If anything wrong can
be detected with the call, a comment is made.
int msglen
-
Length of the message regarding this function call
char msg[1]
-
Actual string message.
Contains msglen bytes of data.
Alphabetic index
This page was generated with the help of DOC++.