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.
utility/Server.h@4:d774541a34da, 2015-03-08 (annotated)
- Committer:
- hudakz
- Date:
- Sun Mar 08 20:26:56 2015 +0000
- Revision:
- 4:d774541a34da
- Parent:
- 3:5b17e4656dd0
- Child:
- 8:4acb22344932
Version 1.09 (fixed leaking client-data caused by race-condition on remote close)
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| hudakz | 3:5b17e4656dd0 | 1 | /* |
| hudakz | 3:5b17e4656dd0 | 2 | Server.h - Base class that provides Server |
| hudakz | 3:5b17e4656dd0 | 3 | Copyright (c) 2011 Adrian McEwen. All right reserved. |
| hudakz | 3:5b17e4656dd0 | 4 | |
| hudakz | 3:5b17e4656dd0 | 5 | Modified (ported to mbed) by Zoltan Hudak <hudakz@inbox.com> |
| hudakz | 4:d774541a34da | 6 | |
| hudakz | 3:5b17e4656dd0 | 7 | This library is free software; you can redistribute it and/or |
| hudakz | 3:5b17e4656dd0 | 8 | modify it under the terms of the GNU Lesser General Public |
| hudakz | 3:5b17e4656dd0 | 9 | License as published by the Free Software Foundation; either |
| hudakz | 3:5b17e4656dd0 | 10 | version 2.1 of the License, or (at your option) any later version. |
| hudakz | 3:5b17e4656dd0 | 11 | |
| hudakz | 3:5b17e4656dd0 | 12 | This library is distributed in the hope that it will be useful, |
| hudakz | 3:5b17e4656dd0 | 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| hudakz | 3:5b17e4656dd0 | 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| hudakz | 3:5b17e4656dd0 | 15 | Lesser General Public License for more details. |
| hudakz | 3:5b17e4656dd0 | 16 | |
| hudakz | 3:5b17e4656dd0 | 17 | You should have received a copy of the GNU Lesser General Public |
| hudakz | 3:5b17e4656dd0 | 18 | License along with this library; if not, write to the Free Software |
| hudakz | 3:5b17e4656dd0 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| hudakz | 3:5b17e4656dd0 | 20 | */ |
| hudakz | 3:5b17e4656dd0 | 21 | #ifndef server_h |
| hudakz | 3:5b17e4656dd0 | 22 | #define server_h |
| hudakz | 3:5b17e4656dd0 | 23 | |
| hudakz | 3:5b17e4656dd0 | 24 | class Server |
| hudakz | 3:5b17e4656dd0 | 25 | { |
| hudakz | 3:5b17e4656dd0 | 26 | public: |
| hudakz | 3:5b17e4656dd0 | 27 | virtual void begin(void) = 0; |
| hudakz | 3:5b17e4656dd0 | 28 | }; |
| hudakz | 3:5b17e4656dd0 | 29 | #endif |