mbed OS5
Fork of UIPEthernet by
utility/uip_debug.h@4:d774541a34da, 2015-03-08 (annotated)
- Committer:
- hudakz
- Date:
- Sun Mar 08 20:26:56 2015 +0000
- Revision:
- 4:d774541a34da
- Parent:
- 3:5b17e4656dd0
- Child:
- 8:4acb22344932
Version 1.09 (fixed leaking client-data caused by race-condition on remote close)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hudakz | 3:5b17e4656dd0 | 1 | #ifndef UIP_DEBUG_H |
hudakz | 3:5b17e4656dd0 | 2 | #define UIP_DEBUG_H |
hudakz | 3:5b17e4656dd0 | 3 | extern "C" |
hudakz | 3:5b17e4656dd0 | 4 | { |
hudakz | 4:d774541a34da | 5 | #import "utility/uip.h" |
hudakz | 3:5b17e4656dd0 | 6 | } |
hudakz | 3:5b17e4656dd0 | 7 | class UIPDebug |
hudakz | 3:5b17e4656dd0 | 8 | { |
hudakz | 3:5b17e4656dd0 | 9 | public: |
hudakz | 3:5b17e4656dd0 | 10 | static void uip_debug_printconns(void); |
hudakz | 3:5b17e4656dd0 | 11 | static bool uip_debug_printcon(struct uip_conn* lhs, struct uip_conn* rhs); |
hudakz | 3:5b17e4656dd0 | 12 | static void uip_debug_printbytes(const uint8_t* data, uint8_t len); |
hudakz | 3:5b17e4656dd0 | 13 | }; |
hudakz | 3:5b17e4656dd0 | 14 | #endif |