| 272 | * Event ids used to identify the informations notified by the TCP/IP stack. |
| 273 | */ |
| 274 | enum EventId |
| 275 | { |
| 276 | EVENT_ID_CONNECTED = 0, /**< Connection is established. */ |
| 277 | EVENT_ID_DISCONNECTED, /**< Connection is disconnected. */ |
| 278 | EVENT_ID_ERROR, /**< A error happened. */ |
| 279 | EVENT_ID_DATA, /**< Data is received. */ |
| 280 | EVENT_ID_TIMEOUT /**< A connection timeout happened. */ |
| 281 | |
| 282 | }; |
| 283 | |
| 284 | /** |
| 285 | * A event is a combination of notification and its corresponding data. |
nothing calls this directly
no outgoing calls
no test coverage detected