2017-02-16 00:40:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 ARM Limited. All rights reserved.
|
|
|
|
*/
|
|
|
|
#ifndef PPP_LWIP_H_
|
|
|
|
#define PPP_LWIP_H_
|
|
|
|
|
2017-02-17 10:41:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
nsapi_error_t ppp_lwip_if_init(struct netif *netif);
|
|
|
|
err_t ppp_lwip_connect(void);
|
2017-02-22 11:02:48 +00:00
|
|
|
err_t ppp_lwip_disconnect(void);
|
2017-02-17 10:41:24 +00:00
|
|
|
#ifdef __cplusplus
|
2017-02-16 00:40:01 +00:00
|
|
|
}
|
2017-02-17 10:41:24 +00:00
|
|
|
#endif
|
2017-02-16 00:40:01 +00:00
|
|
|
|
|
|
|
#endif /* PPP_LWIP_H_ */
|