Dirk Ziegelmeier
|
18415805ad
|
shell only works when TCP is enabled
|
9 years ago |
goldsimon
|
0b5181f406
|
socket_examples: satisfy coverity by checking ip4/6addr_aton return value
|
9 years ago |
Dirk Ziegelmeier
|
abdbdfe467
|
Move SMTP from contrib to main lwIP rep
|
9 years ago |
Dirk Ziegelmeier
|
1511da217a
|
Adapt to changed #include structure of altcp_tls in main lwIP rep
|
9 years ago |
Dirk Ziegelmeier
|
02fd0d3c18
|
One more try to fix smtp.c
|
9 years ago |
Dirk Ziegelmeier
|
2171e94f87
|
Try to fix build of smtp app after ALTCP_TLS change
|
9 years ago |
goldsimon
|
5ca974e807
|
smtp: add SMTPS support (SMTP over TLS) using altcp_tls
|
9 years ago |
goldsimon
|
ff8fdd2c67
|
smtp: some cleanups
|
9 years ago |
goldsimon
|
05754ff895
|
SMTP: convert to altcp
|
9 years ago |
Joel Cunningham
|
2ff2c48e66
|
task #14408: remove sendmsg TCP test from socket examples
Test has been migrated to sockets unit test and combined with recvmsg
|
9 years ago |
Joel Cunningham
|
2f996820e4
|
task #14408: remove sendmsg UDP test from socket examples
sendmsg UDP test has been moved to socket unit tests in LwIP repo
and is no longer needed in socket examples
|
9 years ago |
goldsimon
|
6a62868e26
|
fix chargen.c and socket_examples.c for LWIP_SOCKET_SELECT==0
|
9 years ago |
goldsimon
|
1d147e8687
|
our tcp callback API examples depend on LWIP_CALLBACK_API==1
|
9 years ago |
Dirk Ziegelmeier
|
25a409608c
|
snmpv3_dummy.h: Add missing #include; snmpv3_dummy.c: Use human-readable engine context ID (that can be entered in snmpB)
|
9 years ago |
Dirk Ziegelmeier
|
7788f2854b
|
snmpv3_engine_timer function should be static
|
9 years ago |
Joel Cunningham
|
d1dd43c8ab
|
Revert "Revert "Added sendmsg tests to socket examples""
sendmsg socket example tests got the green light, bring these
back in
This reverts commit 4b32add973.
|
9 years ago |
Dirk Ziegelmeier
|
475e85db62
|
Move snmpv3_dummy.* from main lwIP rep to contrib
|
9 years ago |
Joel Cunningham
|
4b32add973
|
Revert "Added sendmsg tests to socket examples"
This reverts commit 927da57056.
Might have jumped the gun on this one
|
9 years ago |
Joel Cunningham
|
a10056ac10
|
sendmsg test cleanups found by Travis CI
Fixes a couple of type and casting issues found by Travis CI
|
9 years ago |
Joel Cunningham
|
927da57056
|
Added sendmsg tests to socket examples
This commit adds a TCP and UDP test to exercise sendmsg correctness.
Use receiver and packet capture tool to verify results
|
9 years ago |
goldsimon
|
63c01ea5d3
|
socket_examples: fix compiling for !LWIP_SO_SNDRCVTIMEO_NONSTANDARD
|
9 years ago |
goldsimon
|
32f4033dd2
|
apps/shell: fix that help_msg2 string has grown too long
|
9 years ago |
Joel Cunningham
|
e2616fdba9
|
shell: print errno from if_indextoname()
This tests printing the errno value from if_indextoname() upon failure
|
9 years ago |
Dirk Ziegelmeier
|
2233808623
|
Adapt to macro name change in "IPv4 mapped IPv6 addresses" in lwIP core
|
9 years ago |
Joel Cunningham
|
34d756238e
|
Update MSVC and shell for if.h rename
This updates shell.c and MSVC for if.h -> if_api.h rename
|
9 years ago |
Dirk Ziegelmeier
|
9ac2c262b0
|
Rename some more index variables to idx
|
9 years ago |
Joel Cunningham
|
5ce470dcfb
|
Add interface support to shell and VS project file
This commit adds interface API support to shell and adds the
interface files to th Visual Studio project
|
9 years ago |
goldsimon
|
496023b93c
|
fixed compiling without LWIP_DEBUG & LWIP_ERROR and with LWIP_NOASSERT
|
9 years ago |
Dirk Ziegelmeier
|
1a01c1c62c
|
Use LWIP_CONST_CAST and friends in contrib code
|
9 years ago |
sg
|
8d7a1fc801
|
apps/ping: need to include string.h for memset when PING_USE_SOCKETS==1
|
9 years ago |
Dirk Ziegelmeier
|
ef96a6c582
|
Fix warning about uninitialized variable in ping.c (only shown at higher optimization levels)
|
9 years ago |
Dirk Ziegelmeier
|
a6269211a8
|
Fix compile when IPv4 is disabled
|
9 years ago |
Axel Lin
|
75551e6060
|
apps/ping: Fix build error if !LWIP_IPV6
Fix below build error if !LWIP_IPV6:
../../../apps/ping/ping.c: In function ‘ping_send’:
../../../apps/ping/ping.c:134:25: error: implicit declaration of function ‘ip6_addr_isipv6mappedipv4’ [-Werror=implicit-function-declaration]
if(IP_IS_V6(addr) && !ip6_addr_isipv6mappedipv4(ip_2_ip6(addr))) {
^~~~~~~~~~~~~~~~~~~~~~~~~
../../../apps/ping/ping.c:134:3: error: nested extern declaration of ‘ip6_addr_isipv6mappedipv4’ [-Werror=nested-externs]
if(IP_IS_V6(addr) && !ip6_addr_isipv6mappedipv4(ip_2_ip6(addr))) {
^~
../../../apps/ping/ping.c:134:51: error: implicit declaration of function ‘ip_2_ip6’ [-Werror=implicit-function-declaration]
if(IP_IS_V6(addr) && !ip6_addr_isipv6mappedipv4(ip_2_ip6(addr))) {
^~~~~~~~
../../../apps/ping/ping.c:134:3: error: nested extern declaration of ‘ip_2_ip6’ [-Werror=nested-externs]
if(IP_IS_V6(addr) && !ip6_addr_isipv6mappedipv4(ip_2_ip6(addr))) {
^~
cc1: all warnings being treated as errors
Fixes: 8ea25831dd ("simhost: remove ping implementation and use ping app instead")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
|
9 years ago |
Dirk Ziegelmeier
|
8ea25831dd
|
simhost: remove ping implementation and use ping app instead
Improve ping app a bit
|
9 years ago |
Dirk Ziegelmeier
|
5a62572813
|
Adapt to fixing the naming of some inet_addr_* macros in inet.h in lwIP core
|
9 years ago |
Dirk Ziegelmeier
|
7cb5c17472
|
Adapt to lwip core renamings in inet.h: Consistently name some inet <-> ipaddr conversion macros
|
10 years ago |
Dirk Ziegelmeier
|
b65cdd3281
|
Fix several comments for clang -Wdocumentation
|
10 years ago |
Dirk Ziegelmeier
|
cd1252fee9
|
Adapt some apps to new lwip_hton* and lwip_ntoh* functions
|
10 years ago |
Dirk Ziegelmeier
|
6acc80a1f6
|
Minor: Fix coding style in chargen and netio
|
10 years ago |
Dirk Ziegelmeier
|
ca51de0748
|
Minor: Fix coding style in tcpecho_raw and udpecho_raw
|
10 years ago |
Dirk Ziegelmeier
|
a6eec5580c
|
Remove non-standard strnlen() call in lwip_prvmib.c
|
10 years ago |
Erik Ekman
|
39cb335c89
|
ping: Fix build error after IPx_ADDR_ANYx rename
|
10 years ago |
Dirk Ziegelmeier
|
9e62f7846a
|
Minor: memcpy -> MEMCPY / SMEMCPY
|
10 years ago |
Axel Lin
|
4812e6d72b
|
apps/shell: Fix trivial typo
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: goldsimon <goldsimon@gmx.de>
|
10 years ago |
sg
|
fa7bc05764
|
IP_HDRINCL -> LWIP_IP_HDRINCL
|
10 years ago |
Dirk Ziegelmeier
|
daf2fd5748
|
Minor: Fix wrong comment
|
10 years ago |
Dirk Ziegelmeier
|
7f92f986ed
|
Move MIB compiler to contrib, it's a better place for it
|
10 years ago |
Dirk Ziegelmeier
|
949a89c1c9
|
Adapt lwip_prvmib.c to SNMP API changes
|
10 years ago |
goldsimon
|
7f22dcd849
|
remove accidentally committed test code :-/
|
10 years ago |
goldsimon
|
d2e34ec171
|
ping app: fixed setting receive timeout (depending on LWIP_SO_SNDRCVTIMEO_NONSTANDARD)
|
10 years ago |