This builds on TCPSocket_HelloWorld and others to read an in-coming buffer and then build and send a buffer. Very much work in progress
Dependencies: EthernetInterface mbed-rtos mbed
Fork of TCPSocket_HelloWorld by
main.cpp
- Committer:
- donatien
- Date:
- 2012-06-26
- Revision:
- 0:bb128f0e952f
- Child:
- 1:e2652bd064c6
File content as of revision 0:bb128f0e952f:
#include "mbed.h" #include "EthernetInterface.h" int main() { EthernetInterface eth; eth.init(); //Use DHCP eth.connect(); TCPSocket sock; sock.connect("mbed.org", 80); const char http_cmd[] = "GET /media/uploads/donatien/hello.txt HTTP/1.1\r\nHost: %s\r\n\r\n"; sock.send((std::uint8_t*)http_cmd, sizeof(http_cmd) - 1, 3000); char in_buf[256]; bool firstIteration = true; int ret; do { ret = sock.receive((std::uint8_t*)in_buf, 255, firstIteration?3000:0); in_buf[ret] = '\0'; printf("Received %d chars from server: %s\n", ret, in_buf); firstIteration = false; } while( ret > 0 ); sock.close(); eth.disconnect(); while(1) { } }