ID the MBED processor on the network if you have more than one. View MBED name on DHCP of your Router - Example \"MBED PE\" Change your ID in Core / host.h

Committer:
JeffM
Date:
Sat Nov 06 14:11:02 2010 +0000
Revision:
0:fd3b85615428
MBED ID 1A

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JeffM 0:fd3b85615428 1
JeffM 0:fd3b85615428 2 /*
JeffM 0:fd3b85615428 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
JeffM 0:fd3b85615428 4
JeffM 0:fd3b85615428 5 Permission is hereby granted, free of charge, to any person obtaining a copy
JeffM 0:fd3b85615428 6 of this software and associated documentation files (the "Software"), to deal
JeffM 0:fd3b85615428 7 in the Software without restriction, including without limitation the rights
JeffM 0:fd3b85615428 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
JeffM 0:fd3b85615428 9 copies of the Software, and to permit persons to whom the Software is
JeffM 0:fd3b85615428 10 furnished to do so, subject to the following conditions:
JeffM 0:fd3b85615428 11
JeffM 0:fd3b85615428 12 The above copyright notice and this permission notice shall be included in
JeffM 0:fd3b85615428 13 all copies or substantial portions of the Software.
JeffM 0:fd3b85615428 14
JeffM 0:fd3b85615428 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
JeffM 0:fd3b85615428 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
JeffM 0:fd3b85615428 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
JeffM 0:fd3b85615428 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
JeffM 0:fd3b85615428 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
JeffM 0:fd3b85615428 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
JeffM 0:fd3b85615428 21 THE SOFTWARE.
JeffM 0:fd3b85615428 22 */
JeffM 0:fd3b85615428 23
JeffM 0:fd3b85615428 24 /**
JeffM 0:fd3b85615428 25 \file Net Service base class header file
JeffM 0:fd3b85615428 26 */
JeffM 0:fd3b85615428 27
JeffM 0:fd3b85615428 28 #ifndef NETSERVICE_H
JeffM 0:fd3b85615428 29 #define NETSERVICE_H
JeffM 0:fd3b85615428 30
JeffM 0:fd3b85615428 31 #include <list>
JeffM 0:fd3b85615428 32 using std::list;
JeffM 0:fd3b85615428 33
JeffM 0:fd3b85615428 34 ///Net Service base class
JeffM 0:fd3b85615428 35 /**
JeffM 0:fd3b85615428 36 Each connection-oriented object can register as service (by inheriting this class), so that it is polled regularly.
JeffM 0:fd3b85615428 37 It notifies the pool when the connection is terminated so that it can be destroyed.
JeffM 0:fd3b85615428 38 */
JeffM 0:fd3b85615428 39 class NetService
JeffM 0:fd3b85615428 40 {
JeffM 0:fd3b85615428 41 public:
JeffM 0:fd3b85615428 42 ///Instantiates a new service
JeffM 0:fd3b85615428 43 /**
JeffM 0:fd3b85615428 44 @param owned If true the object is owned by the pool and will be destroyed on closure.
JeffM 0:fd3b85615428 45 */
JeffM 0:fd3b85615428 46 NetService(bool owned = true); //Is owned by the pool?
JeffM 0:fd3b85615428 47 virtual ~NetService();
JeffM 0:fd3b85615428 48
JeffM 0:fd3b85615428 49 ///This method can be inherited so that it is called on each @a Net::poll() call.
JeffM 0:fd3b85615428 50 virtual void poll();
JeffM 0:fd3b85615428 51
JeffM 0:fd3b85615428 52 static void servicesPoll(); //Poll all registered services & destroy closed ones
JeffM 0:fd3b85615428 53
JeffM 0:fd3b85615428 54 protected:
JeffM 0:fd3b85615428 55 ///This flags the service as to be destructed if owned by the pool.
JeffM 0:fd3b85615428 56 void close();
JeffM 0:fd3b85615428 57
JeffM 0:fd3b85615428 58 private:
JeffM 0:fd3b85615428 59 bool m_closed;
JeffM 0:fd3b85615428 60 bool m_removed;
JeffM 0:fd3b85615428 61 bool m_owned;
JeffM 0:fd3b85615428 62
JeffM 0:fd3b85615428 63 static list<NetService*>& lpServices(); //Helper to prevent static initialization fiasco
JeffM 0:fd3b85615428 64
JeffM 0:fd3b85615428 65 };
JeffM 0:fd3b85615428 66
JeffM 0:fd3b85615428 67 #endif