1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
49
50
51
52
53
58
59
60
68
69
70
71
76
91
92
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
154
155
156
157
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
184
189
190
191
192
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
260
261
262
263
264
269
273
274
275
276
282
283
284
285
286
287
288
306
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
336
337
338
339
340
346
347
348
349
350
351
352
353
357
358
359
360
361
362
363
/* ... */
#include "main.h"
#include "lwip/debug.h"
#include "lwip/stats.h"
#include "lwip/tcp.h"
#include "lwip/memp.h"
#include <stdio.h>
#include <string.h>
7 includes
#if LWIP_TCPIncludes
u8_t recev_buf[50];
__IO uint32_t message_count=0;
u8_t data[100];
struct tcp_pcb *echoclient_pcb;
enum echoclient_states
{
ES_NOT_CONNECTED = 0,
ES_CONNECTED,
ES_RECEIVED,
ES_CLOSING,
...};
struct echoclient
{
enum echoclient_states state;
struct tcp_pcb *pcb;
struct pbuf *p_tx;
...};
Private variables
static err_t tcp_echoclient_recv(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err);
static void tcp_echoclient_connection_close(struct tcp_pcb *tpcb, struct echoclient * es);
static err_t tcp_echoclient_poll(void *arg, struct tcp_pcb *tpcb);
static err_t tcp_echoclient_sent(void *arg, struct tcp_pcb *tpcb, u16_t len);
static void tcp_echoclient_send(struct tcp_pcb *tpcb, struct echoclient * es);
static err_t tcp_echoclient_connected(void *arg, struct tcp_pcb *tpcb, err_t err);
Private function prototypes
/* ... */
void tcp_echoclient_connect(void)
{
ip_addr_t DestIPaddr;
echoclient_pcb = tcp_new();
if (echoclient_pcb != NULL)
{
IP4_ADDR( &DestIPaddr, DEST_IP_ADDR0, DEST_IP_ADDR1, DEST_IP_ADDR2, DEST_IP_ADDR3 );
tcp_connect(echoclient_pcb,&DestIPaddr,DEST_PORT,tcp_echoclient_connected);
}if (echoclient_pcb != NULL) { ... }
}{ ... }
/* ... */
static err_t tcp_echoclient_connected(void *arg, struct tcp_pcb *tpcb, err_t err)
{
struct echoclient *es = NULL;
if (err == ERR_OK)
{
es = (struct echoclient *)mem_malloc(sizeof(struct echoclient));
if (es != NULL)
{
es->state = ES_CONNECTED;
es->pcb = tpcb;
sprintf((char*)data, "sending tcp client message %d", (int)message_count);
es->p_tx = pbuf_alloc(PBUF_TRANSPORT, strlen((char*)data) , PBUF_POOL);
if (es->p_tx)
{
pbuf_take(es->p_tx, (char*)data, strlen((char*)data));
tcp_arg(tpcb, es);
tcp_recv(tpcb, tcp_echoclient_recv);
tcp_sent(tpcb, tcp_echoclient_sent);
tcp_poll(tpcb, tcp_echoclient_poll, 1);
tcp_echoclient_send(tpcb,es);
return ERR_OK;
}if (es->p_tx) { ... }
}if (es != NULL) { ... }
else
{
tcp_echoclient_connection_close(tpcb, es);
return ERR_MEM;
}else { ... }
}if (err == ERR_OK) { ... }
else
{
tcp_echoclient_connection_close(tpcb, es);
}else { ... }
return err;
}{ ... }
/* ... */
static err_t tcp_echoclient_recv(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err)
{
struct echoclient *es;
err_t ret_err;
LWIP_ASSERT("arg != NULL",arg != NULL);
es = (struct echoclient *)arg;
if (p == NULL)
{
es->state = ES_CLOSING;
if(es->p_tx == NULL)
{
tcp_echoclient_connection_close(tpcb, es);
}if (es->p_tx == NULL) { ... }
else
{
tcp_echoclient_send(tpcb, es);
}else { ... }
ret_err = ERR_OK;
}if (p == NULL) { ... }
else if(err != ERR_OK)
{
if (p != NULL)
{
pbuf_free(p);
}if (p != NULL) { ... }
ret_err = err;
}else if (err != ERR_OK) { ... }
else if(es->state == ES_CONNECTED)
{
message_count++;
tcp_recved(tpcb, p->tot_len);
pbuf_free(p);
tcp_echoclient_connection_close(tpcb, es);
ret_err = ERR_OK;
}else if (es->state == ES_CONNECTED) { ... }
else
{
tcp_recved(tpcb, p->tot_len);
pbuf_free(p);
ret_err = ERR_OK;
}else { ... }
return ret_err;
}{ ... }
/* ... */
static void tcp_echoclient_send(struct tcp_pcb *tpcb, struct echoclient * es)
{
struct pbuf *ptr;
err_t wr_err = ERR_OK;
while ((wr_err == ERR_OK) &&
(es->p_tx != NULL) &&
(es->p_tx->len <= tcp_sndbuf(tpcb)))
{
ptr = es->p_tx;
wr_err = tcp_write(tpcb, ptr->payload, ptr->len, 1);
if (wr_err == ERR_OK)
{
es->p_tx = ptr->next;
if(es->p_tx != NULL)
{
pbuf_ref(es->p_tx);
}if (es->p_tx != NULL) { ... }
pbuf_free(ptr);
}if (wr_err == ERR_OK) { ... }
else if(wr_err == ERR_MEM)
{
es->p_tx = ptr;
}else if (wr_err == ERR_MEM) { ... }
else
{
}else { ... }
}while ((wr_err == ERR_OK) && (es->p_tx != NULL) && (es->p_tx->len <= tcp_sndbuf(tpcb))) { ... }
}{ ... }
/* ... */
static err_t tcp_echoclient_poll(void *arg, struct tcp_pcb *tpcb)
{
err_t ret_err;
struct echoclient *es;
es = (struct echoclient*)arg;
if (es != NULL)
{
if (es->p_tx != NULL)
{
tcp_echoclient_send(tpcb, es);
}if (es->p_tx != NULL) { ... }
else
{
if(es->state == ES_CLOSING)
{
tcp_echoclient_connection_close(tpcb, es);
}if (es->state == ES_CLOSING) { ... }
}else { ... }
ret_err = ERR_OK;
}if (es != NULL) { ... }
else
{
tcp_abort(tpcb);
ret_err = ERR_ABRT;
}else { ... }
return ret_err;
}{ ... }
/* ... */
static err_t tcp_echoclient_sent(void *arg, struct tcp_pcb *tpcb, u16_t len)
{
struct echoclient *es;
LWIP_UNUSED_ARG(len);
es = (struct echoclient *)arg;
if(es->p_tx != NULL)
{
tcp_echoclient_send(tpcb, es);
}if (es->p_tx != NULL) { ... }
return ERR_OK;
}{ ... }
/* ... */
static void tcp_echoclient_connection_close(struct tcp_pcb *tpcb, struct echoclient * es )
{
tcp_recv(tpcb, NULL);
tcp_sent(tpcb, NULL);
tcp_poll(tpcb, NULL,0);
if (es != NULL)
{
mem_free(es);
}if (es != NULL) { ... }
tcp_close(tpcb);
}{ ... }
Private functions#endif/* ... */