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.
Fork of http-example by
source/select-demo.h@11:72c089200302, 2017-03-28 (annotated)
- Committer:
- Jan Jongboom
- Date:
- Tue Mar 28 14:51:12 2017 +0200
- Revision:
- 11:72c089200302
- Parent:
- 2:4b4ac59ff9b0
- Child:
- 16:1374b4c35897
Add socket reuse
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Jan Jongboom |
0:85fdc69bc10c | 1 | #ifndef _SELECT_METHOD_H_ |
Jan Jongboom |
0:85fdc69bc10c | 2 | #define _SELECT_METHOD_H_ |
Jan Jongboom |
0:85fdc69bc10c | 3 | |
Jan Jongboom |
11:72c089200302 | 4 | #define DEMO_HTTP 1 |
Jan Jongboom |
11:72c089200302 | 5 | #define DEMO_HTTP_SOCKET_REUSE 2 |
Jan Jongboom |
11:72c089200302 | 6 | #define DEMO_HTTPS 3 |
Jan Jongboom |
11:72c089200302 | 7 | #define DEMO_HTTPS_SOCKET_REUSE 4 |
Jan Jongboom |
0:85fdc69bc10c | 8 | |
Jan Jongboom |
2:4b4ac59ff9b0 | 9 | #define DEMO DEMO_HTTP |
Jan Jongboom |
0:85fdc69bc10c | 10 | |
Jan Jongboom |
0:85fdc69bc10c | 11 | #endif // _SELECT_METHOD_H_ |