Socket level: next up previous contents
Next: Connection level: Up: Networking Schema Previous: Networking Schema   Contents

Socket level:

  1. SOCKET_CREATE
    A socket has been created due to a request. The socket's new address in memory is logged (and could be used to track socket activities) and its domain and protocol.

  2. SOCKET_CLOSE
    A socket has been closed and will not be active anymore.

  3. SOCKET_ASSIGNADDR
    A socket has been assigned to an IP address and port and was set to communicate using a specified protocol.

  4. SOCKET_LISTEN
    A socket has been assigned to be a listening socket and will listen for data.

  5. SOCKET_ACCEPT
    A socket has been accepted to connect to another socket.

  6. SOCKET_WRITE
    A socket is writing data to its target.

  7. SOCKET_RECEIVE
    A socket is receiving (processed) data from its target.



Yoav Etsion 2007-09-09