PPPIPInterface.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* PPPIPInterface.h */
  2. /* Copyright (C) 2012 mbed.org, MIT License
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
  5. * and associated documentation files (the "Software"), to deal in the Software without restriction,
  6. * including without limitation the rights to use, copy, modify, merge, publish, distribute,
  7. * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in all copies or
  11. * substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  14. * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  15. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  16. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. */
  19. #ifndef PPPIPINTERFACE_H_
  20. #define PPPIPINTERFACE_H_
  21. #include "core/fwk.h"
  22. #include "LwIPInterface.h"
  23. #include "lwip/sio.h"
  24. namespace rtos {
  25. class Semaphore;
  26. }
  27. using namespace rtos;
  28. #define DEFAULT_MSISDN_GSM "*99#"
  29. #define DEFAULT_MSISDN_CDMA "#777"
  30. /** Interface using PPP to connect to an IP-based network
  31. *
  32. */
  33. class PPPIPInterface : public LwIPInterface
  34. {
  35. public:
  36. PPPIPInterface(IOStream* pStream);
  37. virtual ~PPPIPInterface();
  38. int init(); //Init PPP-specific stuff, create the right bindings, etc
  39. int setup(const char* user, const char* pw, const char* msisdn); //Setup authentication
  40. virtual int connect();
  41. virtual int disconnect();
  42. private:
  43. int cleanupLink();
  44. static void linkStatusCb(void *ctx, int errCode, void *arg); //PPP link status
  45. Semaphore m_linkStatusSphre;
  46. int m_pppErrCode;
  47. IOStream* m_pStream; //Serial stream
  48. bool m_streamAvail;
  49. const char* m_msisdn;
  50. int m_pppd;
  51. friend u32_t sio_write(sio_fd_t fd, u8_t *data, u32_t len);
  52. friend u32_t sio_read(sio_fd_t fd, u8_t *data, u32_t len);
  53. friend void sio_read_abort(sio_fd_t fd);
  54. };
  55. #endif /* PPPIPINTERFACE_H_ */