Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: wave_player 4DGL-uLCD-SE HC_SR04_Ultrasonic_Library
Diff: main.cpp
- Revision:
- 56:02a6401ec508
- Parent:
- 49:1923a727df5b
- Child:
- 58:4aeb931b8475
--- a/main.cpp Tue Aug 14 14:00:07 2018 +0100
+++ b/main.cpp Wed Aug 15 11:15:04 2018 +0100
@@ -40,6 +40,10 @@
// Open a socket on the network interface, and create a TCP connection to mbed.org
TCPSocket socket;
+ // Send a simple http request
+ char sbuffer[] = "GET / HTTP/1.1\r\nHost: api.ipify.org\r\nConnection: close\r\n\r\n";
+ nsapi_size_t size = strlen(sbuffer);
+
r = socket.open(net);
if (r != 0) {
printf("Error! socket.open() returned: %d\n", r);
@@ -48,18 +52,15 @@
r = socket.connect("api.ipify.org", 80);
if (r != 0) {
printf("Error! socket.connect() returned: %d\n", r);
+ goto DISCONNECT;
}
- // Send a simple http request
- char sbuffer[] = "GET / HTTP/1.1\r\nHost: api.ipify.org\r\nConnection: close\r\n\r\n";
- nsapi_size_t size = strlen(sbuffer);
-
// Loop until whole request send
while(size) {
r = socket.send(sbuffer+r, size);
if (r < 0) {
- printf("Error! socket.connect() returned: %d\n", r);
- goto disconnect;
+ printf("Error! socket.send() returned: %d\n", r);
+ goto DISCONNECT;
}
size -= r;
printf("sent %d [%.*s]\n", r, strstr(sbuffer, "\r\n")-sbuffer, sbuffer);
@@ -76,7 +77,7 @@
}
if (r < 0) {
printf("Error! socket.recv() returned: %d\n", r);
- goto disconnect;
+ goto DISCONNECT;
}
printf("recv %d [%.*s]\n", rcount, strstr(buffer, "\r\n")-buffer, buffer);
@@ -86,7 +87,7 @@
printf("External IP address: %.*s\n", rcount-(p-buffer), p);
delete[] buffer;
-disconnect:
+DISCONNECT:
// Close the socket to return its memory and bring down the network interface
socket.close();