Skip to content
Merged
Changes from all commits
Commits
Show all changes
37 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
5666cc9
Error code corrected.
AniruddhaKanhere Apr 20, 2021
c6aac65
Remove not needed files
AniruddhaKanhere Apr 20, 2021
3feab6f
Merge branch 'main' into ErrorCodeCorrection
AniruddhaKanhere Apr 20, 2021
d2dd5da
typo fixed
AniruddhaKanhere Apr 20, 2021
1193b31
Merge branch 'ErrorCodeCorrection' of https://github.com/aniruddhakan…
AniruddhaKanhere Apr 20, 2021
282439f
Merge branch 'main' into ErrorCodeCorrection
AniruddhaKanhere Apr 21, 2021
c8c0178
revert back a change
AniruddhaKanhere Apr 21, 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
5 changes: 2 additions & 3 deletions FreeRTOS_Sockets.c
Original file line number Diff line number Diff line change
Expand Up @@ -3616,9 +3616,8 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t * pxSocket )
}
else if( pxSocket->u.xTCP.ucTCPState != ( uint8_t ) eESTABLISHED )
{
/*_RB_ Is this comment correct? The socket is not of a type that
* supports the listen() operation. */
xResult = -pdFREERTOS_ERRNO_EOPNOTSUPP;
/* The socket is not connected. */
xResult = -pdFREERTOS_ERRNO_ENOTCONN;
}
else
{
Expand Down