Skip to content
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
be9fe45
Fix compiler warnings when the TCP Window is not used (#124)
AniruddhaKanhere Dec 18, 2020
f39f440
Move local variables to inner loop in prvNetworkInterfaceInput() (#144)
htibosch Jan 5, 2021
e696768
Update litani submodule (#147)
markrtuttle Jan 7, 2021
307bacb
Fix doxygen check (#149)
AniruddhaKanhere Jan 11, 2021
b80e096
TCP_WIN: fix compile warning on x86_64 (#148)
twpedersen Jan 14, 2021
4a05a0a
fix deprecated volatile compound assignment (#152)
hs2gh Jan 14, 2021
f3650e4
FreeRTOS_ARP.c : store local addresses only (#120)
htibosch Jan 15, 2021
2ecc851
Remove unnecessary #ifndef (#186)
AniruddhaKanhere Jan 28, 2021
82fa238
Don't Fragment Flags patch. (#179)
evpopov Feb 3, 2021
9e364b9
fix IP buffer padding check on 64bit (#146)
twpedersen Feb 8, 2021
20cbc94
Update readme.md (#189)
shrewmouse1 Feb 8, 2021
7a56144
Update files referencing aws_application_version.h to use iot_applica…
paulbartell Feb 8, 2021
a4d261c
Remove function defs from header files (#190)
AniruddhaKanhere Feb 9, 2021
ffc9612
Do not release a network buffer if it equals to NULL (#191)
htibosch Feb 12, 2021
245d1c5
Circumvent Qemu MPS2 networking bug (#142)
alfred2g Feb 16, 2021
38c4054
Add a project for static analysis (#195)
AniruddhaKanhere Feb 19, 2021
809b438
Merge pull request #9 from FreeRTOS/main
AniruddhaKanhere Feb 24, 2021
c35ee3e
Create uncrustify.yml
AniruddhaKanhere Feb 28, 2021
894fe96
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
be69988
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
2ba96b2
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
bfe8232
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
9152cde
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
40410e1
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
d7e314c
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
0a27eb9
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
48beb6b
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
faed2e1
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
6b98a33
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
d621465
Update uncrustify.yml
AniruddhaKanhere Feb 28, 2021
dd3af6b
Add header in the socket file
AniruddhaKanhere Mar 3, 2021
9f6bbfc
Remove unwanted file
AniruddhaKanhere Mar 3, 2021
c1834ce
Merge branch 'main' into AddHeaders
AniruddhaKanhere Mar 3, 2021
54eff5a
remove unwanted changes
AniruddhaKanhere Mar 3, 2021
7273c7d
Merge branch 'AddHeaders' of https://github.com/aniruddhakanhere/free…
AniruddhaKanhere Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions include/FreeRTOS_Sockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
/* Standard includes. */
#include <string.h>

/* FreeRTOS includes. */
#include "FreeRTOS.h"

/* Application level configuration options. */
#include "FreeRTOSIPConfig.h"

Expand Down