00001 #include "global.h" 00002 00003 #ifdef CLIENT 00004 00005 err_t client_sent(void *arg, struct tcp_pcb *pcb, u16_t len) 00006 { 00007 print("Donnees emises par le client : 0x"); 00008 putnum(len); 00009 print("\n\r"); 00010 00011 return ERR_OK; 00012 } 00013 00014 #endif //CLIENT