Andrew Boyson / net

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Wed Dec 05 18:30:37 2018 +0000
Revision:
94:e2973a2c488e
Parent:
61:aad055f1b0d1
Fixed bug - incorrect MSS being sent from a polled sync: expected 1440 but had -60. Traced to buffer datalength in EthPollForPacketToSend being set to zero instead of being calculated from the buffer length - headersize.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 61:aad055f1b0d1 1 #include <stdbool.h>
andrewboyson 61:aad055f1b0d1 2
andrewboyson 50:492f2d2954e4 3 extern bool Nr6Trace;
andrewboyson 50:492f2d2954e4 4
andrewboyson 50:492f2d2954e4 5 extern void Nr6MakeRequestForNameFromIp(char* ip);
andrewboyson 50:492f2d2954e4 6 extern void Nr6MakeRequestForIpFromName(char* name);
andrewboyson 50:492f2d2954e4 7
andrewboyson 50:492f2d2954e4 8 extern void Nr6AddIpRecord(char* ip, char* name, int protocol);
andrewboyson 50:492f2d2954e4 9
andrewboyson 50:492f2d2954e4 10 extern void Nr6IpToName(char* ip, char* name);
andrewboyson 50:492f2d2954e4 11 extern void Nr6NameToIp(char* name, char* ip);
andrewboyson 61:aad055f1b0d1 12 extern void Nr6SendHttp(void);
andrewboyson 50:492f2d2954e4 13
andrewboyson 61:aad055f1b0d1 14 extern void Nr6Main(void);
andrewboyson 61:aad055f1b0d1 15 extern void Nr6Init(void);