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@9:a156d3de5647, 2019-08-27 (annotated)
- Committer:
- hudakz
- Date:
- Tue Aug 27 15:01:10 2019 +0000
- Revision:
- 9:a156d3de5647
- Parent:
- 8:4acb22344932
Mbed OS 5 support added and API modified.
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 | 8:4acb22344932 | 21 | #ifndef SERVER_H |
| hudakz | 8:4acb22344932 | 22 | #define SERVER_H |
| hudakz | 3:5b17e4656dd0 | 23 | |
| hudakz | 3:5b17e4656dd0 | 24 | class Server |
| hudakz | 3:5b17e4656dd0 | 25 | { |
| hudakz | 3:5b17e4656dd0 | 26 | public: |
| hudakz | 9:a156d3de5647 | 27 | virtual void open(void) = 0; |
| hudakz | 3:5b17e4656dd0 | 28 | }; |
| hudakz | 3:5b17e4656dd0 | 29 | #endif |