@@ -41,7 +41,7 @@ int RF24Client::connect(IPAddress ip, uint16_t port)
41
41
{
42
42
#if UIP_ACTIVE_OPEN > 0
43
43
44
- // do{
44
+ // do{
45
45
46
46
stop ();
47
47
uip_ipaddr_t ipaddr;
@@ -75,10 +75,10 @@ int RF24Client::connect(IPAddress ip, uint16_t port)
75
75
#endif
76
76
}
77
77
}
78
- // delay(25);
79
- // }while(millis()-timer < 175);
78
+ // delay(25);
79
+ // }while(millis()-timer < 175);
80
80
81
- #endif // Active open enabled
81
+ #endif // Active open enabled
82
82
83
83
return 0 ;
84
84
}
@@ -105,7 +105,7 @@ int RF24Client::connect(const char* host, uint16_t port)
105
105
return connect (remote_addr, port);
106
106
}
107
107
#else // ! UIP_UDP
108
- // Do something with the input parameters to prevent compile time warnings
108
+ // Do something with the input parameters to prevent compile time warnings
109
109
if (host) {
110
110
};
111
111
if (port) {
@@ -214,7 +214,7 @@ size_t RF24Client::_write(uip_userdata_t* u, const uint8_t* buf, size_t size)
214
214
size_t remain = size - total_written;
215
215
payloadSize = rf24_min (remain, UIP_TCP_MSS);
216
216
217
- // RF24EthernetClass::tick();
217
+ // RF24EthernetClass::tick();
218
218
goto test2;
219
219
}
220
220
return u->out_pos ;
@@ -227,9 +227,9 @@ size_t RF24Client::_write(uip_userdata_t* u, const uint8_t* buf, size_t size)
227
227
228
228
void uip_log (char * msg)
229
229
{
230
- // Serial.println();
231
- // Serial.println("** UIP LOG **");
232
- // Serial.println(msg);
230
+ // Serial.println();
231
+ // Serial.println("** UIP LOG **");
232
+ // Serial.println(msg);
233
233
if (msg)
234
234
{
235
235
};
@@ -243,11 +243,11 @@ void serialip_appcall(void)
243
243
244
244
#if UIP_CONNECTION_TIMEOUT > 0
245
245
if (u && u->connectTimeout > 0 ) {
246
- if (!u->initialData ){
246
+ if (!u->initialData ) {
247
247
u->connectTimer = millis ();
248
248
u->initialData = true ;
249
- }else
250
- if (millis () - u->connectTimer > u->connectTimeout ){
249
+ }
250
+ else if (millis () - u->connectTimer > u->connectTimeout ) {
251
251
u->state |= UIP_CLIENT_CLOSE;
252
252
u->connectTimer = millis ();
253
253
IF_RF24ETHERNET_DEBUG_CLIENT (Serial.println (); Serial.print (millis ()); Serial.println (" UIP Client close(timeout)" ););
@@ -264,9 +264,9 @@ void serialip_appcall(void)
264
264
265
265
if (u)
266
266
{
267
- #if UIP_CONNECTION_TIMEOUT > 0
268
- u->connectTimer = millis ();
269
- #endif
267
+ #if UIP_CONNECTION_TIMEOUT > 0
268
+ u->connectTimer = millis ();
269
+ #endif
270
270
uip_conn->appstate = u;
271
271
IF_RF24ETHERNET_DEBUG_CLIENT (Serial.print (F (" UIPClient allocated state: " )); Serial.println (u->state , BIN););
272
272
}
@@ -282,9 +282,9 @@ void serialip_appcall(void)
282
282
if (uip_newdata ())
283
283
{
284
284
IF_RF24ETHERNET_DEBUG_CLIENT (Serial.println (); Serial.print (millis ()); Serial.print (F (" UIPClient uip_newdata, uip_len:" )); Serial.println (uip_len););
285
- #if UIP_CONNECTION_TIMEOUT > 0
286
- u->connectTimer = millis ();
287
- #endif
285
+ #if UIP_CONNECTION_TIMEOUT > 0
286
+ u->connectTimer = millis ();
287
+ #endif
288
288
289
289
if (u->sent )
290
290
{
@@ -336,15 +336,15 @@ void serialip_appcall(void)
336
336
u->state &= ~UIP_CLIENT_RESTART;
337
337
u->hold = (u->out_pos = (u->windowOpened = (u->packets_out = false )));
338
338
u->restartTime = millis ();
339
- #if UIP_CONNECTION_TIMEOUT > 0
339
+ #if UIP_CONNECTION_TIMEOUT > 0
340
340
u->connectTimer = millis ();
341
- #endif
341
+ #endif
342
342
}
343
343
344
344
/* ******Polling**********/
345
345
if (uip_poll () || uip_rexmit ())
346
346
{
347
- // IF_RF24ETHERNET_DEBUG_CLIENT( Serial.println(); Serial.println(F("UIPClient uip_poll")); );
347
+ // IF_RF24ETHERNET_DEBUG_CLIENT( Serial.println(); Serial.println(F("UIPClient uip_poll")); );
348
348
349
349
if (u->packets_out != 0 )
350
350
{
@@ -359,24 +359,24 @@ void serialip_appcall(void)
359
359
// Only call this if the TCP window has already been re-opened, the connection is being polled, but no data
360
360
// has been acked
361
361
if (!(u->state & (UIP_CLIENT_CLOSE | UIP_CLIENT_REMOTECLOSED)))
362
- {
363
-
364
- if (u->windowOpened == true && u->state & UIP_CLIENT_RESTART && millis () - u->restartTime > u->restartInterval )
365
362
{
366
- u->restartTime = millis ();
363
+
364
+ if (u->windowOpened == true && u->state & UIP_CLIENT_RESTART && millis () - u->restartTime > u->restartInterval )
365
+ {
366
+ u->restartTime = millis ();
367
367
#if defined RF24ETHERNET_DEBUG_CLIENT || defined ETH_DEBUG_L1
368
368
Serial.println ();
369
369
Serial.print (millis ());
370
- #if UIP_CONNECTION_TIMEOUT > 0
371
- Serial.print (F (" UIPClient Re-Open TCP Window, time remaining before abort: " ));
372
- Serial.println ( UIP_CONNECTION_TIMEOUT - (millis () - u->connectTimer ));
373
- #endif
370
+ #if UIP_CONNECTION_TIMEOUT > 0
371
+ Serial.print (F (" UIPClient Re-Open TCP Window, time remaining before abort: " ));
372
+ Serial.println (UIP_CONNECTION_TIMEOUT - (millis () - u->connectTimer ));
373
+ #endif
374
374
#endif
375
- u->restartInterval += 500 ;
376
- u->restartInterval = rf24_min (u->restartInterval , 7000 );
377
- uip_restart ();
375
+ u->restartInterval += 500 ;
376
+ u->restartInterval = rf24_min (u->restartInterval , 7000 );
377
+ uip_restart ();
378
+ }
378
379
}
379
- }
380
380
}
381
381
382
382
/* ******Close**********/
@@ -434,10 +434,10 @@ uip_userdata_t* RF24Client::_allocateData()
434
434
data->out_pos = 0 ;
435
435
data->hold = 0 ;
436
436
data->initialData = false ;
437
- #if (UIP_CONNECTION_TIMEOUT > 0)
438
- data->connectTimer = millis ();
439
- data->connectTimeout = UIP_CONNECTION_TIMEOUT;
440
- #endif
437
+ #if (UIP_CONNECTION_TIMEOUT > 0)
438
+ data->connectTimer = millis ();
439
+ data->connectTimeout = UIP_CONNECTION_TIMEOUT;
440
+ #endif
441
441
return data;
442
442
}
443
443
}
0 commit comments