mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-03-12 13:13:21 +00:00
Fix bug #47507: PPP API does not support LWIP_MPU_COMPATIBLE
I'd be glad if someone would test it :-) Sylvain, if you don't like this patch feel free to revert it
This commit is contained in:
parent
8ce49499ae
commit
2b5250dd9d
@ -504,7 +504,7 @@ err_t ppp_connect(ppp_pcb *pcb, u16_t holdoff);
|
|||||||
* If this port connects to a modem, the modem connection must be
|
* If this port connects to a modem, the modem connection must be
|
||||||
* established before calling this.
|
* established before calling this.
|
||||||
*/
|
*/
|
||||||
err_t ppp_listen(ppp_pcb *pcb, struct ppp_addrs *addrs);
|
err_t ppp_listen(ppp_pcb *pcb, const struct ppp_addrs *addrs);
|
||||||
#endif /* PPP_SERVER */
|
#endif /* PPP_SERVER */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -141,7 +141,7 @@ struct link_callbacks {
|
|||||||
err_t (*connect) (ppp_pcb *pcb, void *ctx);
|
err_t (*connect) (ppp_pcb *pcb, void *ctx);
|
||||||
#if PPP_SERVER
|
#if PPP_SERVER
|
||||||
/* Listen for an incoming connection (Passive mode) */
|
/* Listen for an incoming connection (Passive mode) */
|
||||||
err_t (*listen) (ppp_pcb *pcb, void *ctx, struct ppp_addrs *addrs);
|
err_t (*listen) (ppp_pcb *pcb, void *ctx, const struct ppp_addrs *addrs);
|
||||||
#endif /* PPP_SERVER */
|
#endif /* PPP_SERVER */
|
||||||
/* End a connection (i.e. initiate disconnect phase) */
|
/* End a connection (i.e. initiate disconnect phase) */
|
||||||
void (*disconnect) (ppp_pcb *pcb, void *ctx);
|
void (*disconnect) (ppp_pcb *pcb, void *ctx);
|
||||||
|
@ -106,6 +106,13 @@
|
|||||||
#define MEMP_NUM_PPPOL2TP_INTERFACES 1
|
#define MEMP_NUM_PPPOL2TP_INTERFACES 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MEMP_NUM_PPP_API_MSG: Number of concurrent PPP API messages (in pppapi.c)
|
||||||
|
*/
|
||||||
|
#ifndef MEMP_NUM_PPP_API_MSG
|
||||||
|
#define MEMP_NUM_PPP_API_MSG 5
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PPP_DEBUG: Enable debugging for PPP.
|
* PPP_DEBUG: Enable debugging for PPP.
|
||||||
*/
|
*/
|
||||||
|
@ -79,7 +79,7 @@ struct pppapi_msg_msg {
|
|||||||
struct {
|
struct {
|
||||||
struct netif *pppif;
|
struct netif *pppif;
|
||||||
struct netif *netif;
|
struct netif *netif;
|
||||||
ip_addr_t *ipaddr;
|
API_MSG_M_DEF_C(ip_addr_t, ipaddr);
|
||||||
u16_t port;
|
u16_t port;
|
||||||
#if PPPOL2TP_AUTH_SUPPORT
|
#if PPPOL2TP_AUTH_SUPPORT
|
||||||
const u8_t *secret;
|
const u8_t *secret;
|
||||||
@ -94,7 +94,7 @@ struct pppapi_msg_msg {
|
|||||||
} connect;
|
} connect;
|
||||||
#if PPP_SERVER
|
#if PPP_SERVER
|
||||||
struct {
|
struct {
|
||||||
struct ppp_addrs *addrs;
|
API_MSG_M_DEF_C(struct ppp_addrs, addrs);
|
||||||
} listen;
|
} listen;
|
||||||
#endif /* PPP_SERVER */
|
#endif /* PPP_SERVER */
|
||||||
struct {
|
struct {
|
||||||
|
@ -193,7 +193,7 @@ struct pppol2tp_pcb_s {
|
|||||||
|
|
||||||
/* Create a new L2TP session. */
|
/* Create a new L2TP session. */
|
||||||
ppp_pcb *pppol2tp_create(struct netif *pppif,
|
ppp_pcb *pppol2tp_create(struct netif *pppif,
|
||||||
struct netif *netif, ip_addr_t *ipaddr, u16_t port,
|
struct netif *netif, const ip_addr_t *ipaddr, u16_t port,
|
||||||
const u8_t *secret, u8_t secret_len,
|
const u8_t *secret, u8_t secret_len,
|
||||||
ppp_link_status_cb_fn link_status_cb, void *ctx_cb);
|
ppp_link_status_cb_fn link_status_cb, void *ctx_cb);
|
||||||
|
|
||||||
|
@ -145,6 +145,9 @@ LWIP_MEMPOOL_PROTOTYPE(PPPOE_IF);
|
|||||||
#if PPPOL2TP_SUPPORT
|
#if PPPOL2TP_SUPPORT
|
||||||
LWIP_MEMPOOL_PROTOTYPE(PPPOL2TP_PCB);
|
LWIP_MEMPOOL_PROTOTYPE(PPPOL2TP_PCB);
|
||||||
#endif
|
#endif
|
||||||
|
#if LWIP_PPP_API && LWIP_MPU_COMPATIBLE
|
||||||
|
LWIP_MEMPOOL_PROTOTYPE(PPPAPI_MSG);
|
||||||
|
#endif
|
||||||
LWIP_MEMPOOL_DECLARE(PPP_PCB, MEMP_NUM_PPP_PCB, sizeof(ppp_pcb), "PPP_PCB")
|
LWIP_MEMPOOL_DECLARE(PPP_PCB, MEMP_NUM_PPP_PCB, sizeof(ppp_pcb), "PPP_PCB")
|
||||||
|
|
||||||
/* FIXME: add stats per PPP session */
|
/* FIXME: add stats per PPP session */
|
||||||
@ -278,7 +281,7 @@ err_t ppp_connect(ppp_pcb *pcb, u16_t holdoff) {
|
|||||||
* If this port connects to a modem, the modem connection must be
|
* If this port connects to a modem, the modem connection must be
|
||||||
* established before calling this.
|
* established before calling this.
|
||||||
*/
|
*/
|
||||||
err_t ppp_listen(ppp_pcb *pcb, struct ppp_addrs *addrs) {
|
err_t ppp_listen(ppp_pcb *pcb, const struct ppp_addrs *addrs) {
|
||||||
if (pcb->phase != PPP_PHASE_DEAD) {
|
if (pcb->phase != PPP_PHASE_DEAD) {
|
||||||
return ERR_ALREADY;
|
return ERR_ALREADY;
|
||||||
}
|
}
|
||||||
@ -585,6 +588,9 @@ int ppp_init(void)
|
|||||||
#if PPPOL2TP_SUPPORT
|
#if PPPOL2TP_SUPPORT
|
||||||
LWIP_MEMPOOL_INIT(PPPOL2TP_PCB);
|
LWIP_MEMPOOL_INIT(PPPOL2TP_PCB);
|
||||||
#endif
|
#endif
|
||||||
|
#if LWIP_PPP_API && LWIP_MPU_COMPATIBLE
|
||||||
|
LWIP_MEMPOOL_INIT(PPPAPI_MSG);
|
||||||
|
#endif
|
||||||
|
|
||||||
LWIP_MEMPOOL_INIT(PPP_PCB);
|
LWIP_MEMPOOL_INIT(PPP_PCB);
|
||||||
|
|
||||||
|
@ -41,6 +41,15 @@
|
|||||||
#include "netif/ppp/pppol2tp.h"
|
#include "netif/ppp/pppol2tp.h"
|
||||||
#include "netif/ppp/pppos.h"
|
#include "netif/ppp/pppos.h"
|
||||||
|
|
||||||
|
#if LWIP_MPU_COMPATIBLE
|
||||||
|
LWIP_MEMPOOL_DECLARE(PPPAPI_MSG, MEMP_NUM_PPP_API_MSG, sizeof(struct pppapi_msg), "PPPAPI_MSG")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define PPPAPI_VAR_REF(name) API_VAR_REF(name)
|
||||||
|
#define PPPAPI_VAR_DECLARE(name) API_VAR_DECLARE(struct pppapi_msg, name)
|
||||||
|
#define PPPAPI_VAR_ALLOC(name) API_VAR_ALLOC_POOL(struct pppapi_msg, PPPAPI_MSG, name, ERR_MEM)
|
||||||
|
#define PPPAPI_VAR_ALLOC_RETURN_NULL(name) API_VAR_ALLOC_POOL(struct pppapi_msg, PPPAPI_MSG, name, NULL)
|
||||||
|
#define PPPAPI_VAR_FREE(name) API_VAR_FREE_POOL(PPPAPI_MSG, name)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call ppp_set_default() inside the tcpip_thread context.
|
* Call ppp_set_default() inside the tcpip_thread context.
|
||||||
@ -61,9 +70,14 @@ pppapi_do_ppp_set_default(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_set_default(ppp_pcb *pcb)
|
pppapi_set_default(ppp_pcb *pcb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_set_default, &msg.call);
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_set_default, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -87,12 +101,17 @@ pppapi_do_ppp_set_auth(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_set_auth(ppp_pcb *pcb, u8_t authtype, const char *user, const char *passwd)
|
pppapi_set_auth(ppp_pcb *pcb, u8_t authtype, const char *user, const char *passwd)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.setauth.authtype = authtype;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
msg.msg.msg.setauth.user = user;
|
|
||||||
msg.msg.msg.setauth.passwd = passwd;
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
return tcpip_api_call(pppapi_do_ppp_set_auth, &msg.call);
|
PPPAPI_VAR_REF(msg).msg.msg.setauth.authtype = authtype;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.setauth.user = user;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.setauth.passwd = passwd;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_set_auth, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -115,10 +134,15 @@ pppapi_do_ppp_set_notify_phase_callback(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_set_notify_phase_callback(ppp_pcb *pcb, ppp_notify_phase_cb_fn notify_phase_cb)
|
pppapi_set_notify_phase_callback(ppp_pcb *pcb, ppp_notify_phase_cb_fn notify_phase_cb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.setnotifyphasecb.notify_phase_cb = notify_phase_cb;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_set_notify_phase_callback, &msg.call);
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.setnotifyphasecb.notify_phase_cb = notify_phase_cb;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_set_notify_phase_callback, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
#endif /* PPP_NOTIFY_PHASE */
|
#endif /* PPP_NOTIFY_PHASE */
|
||||||
|
|
||||||
@ -145,14 +169,19 @@ ppp_pcb*
|
|||||||
pppapi_pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb,
|
pppapi_pppos_create(struct netif *pppif, pppos_output_cb_fn output_cb,
|
||||||
ppp_link_status_cb_fn link_status_cb, void *ctx_cb)
|
ppp_link_status_cb_fn link_status_cb, void *ctx_cb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
ppp_pcb* result;
|
||||||
msg.msg.ppp = NULL;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.serialcreate.pppif = pppif;
|
PPPAPI_VAR_ALLOC_RETURN_NULL(msg);
|
||||||
msg.msg.msg.serialcreate.output_cb = output_cb;
|
|
||||||
msg.msg.msg.serialcreate.link_status_cb = link_status_cb;
|
PPPAPI_VAR_REF(msg).msg.ppp = NULL;
|
||||||
msg.msg.msg.serialcreate.ctx_cb = ctx_cb;
|
PPPAPI_VAR_REF(msg).msg.msg.serialcreate.pppif = pppif;
|
||||||
tcpip_api_call(pppapi_do_pppos_create, &msg.call);
|
PPPAPI_VAR_REF(msg).msg.msg.serialcreate.output_cb = output_cb;
|
||||||
return msg.msg.ppp;
|
PPPAPI_VAR_REF(msg).msg.msg.serialcreate.link_status_cb = link_status_cb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.serialcreate.ctx_cb = ctx_cb;
|
||||||
|
tcpip_api_call(pppapi_do_pppos_create, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
result = PPPAPI_VAR_REF(msg).msg.ppp;
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
#endif /* PPPOS_SUPPORT */
|
#endif /* PPPOS_SUPPORT */
|
||||||
|
|
||||||
@ -181,16 +210,21 @@ pppapi_pppoe_create(struct netif *pppif, struct netif *ethif, const char *servic
|
|||||||
const char *concentrator_name, ppp_link_status_cb_fn link_status_cb,
|
const char *concentrator_name, ppp_link_status_cb_fn link_status_cb,
|
||||||
void *ctx_cb)
|
void *ctx_cb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
ppp_pcb* result;
|
||||||
msg.msg.ppp = NULL;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.ethernetcreate.pppif = pppif;
|
PPPAPI_VAR_ALLOC_RETURN_NULL(msg);
|
||||||
msg.msg.msg.ethernetcreate.ethif = ethif;
|
|
||||||
msg.msg.msg.ethernetcreate.service_name = service_name;
|
PPPAPI_VAR_REF(msg).msg.ppp = NULL;
|
||||||
msg.msg.msg.ethernetcreate.concentrator_name = concentrator_name;
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.pppif = pppif;
|
||||||
msg.msg.msg.ethernetcreate.link_status_cb = link_status_cb;
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.ethif = ethif;
|
||||||
msg.msg.msg.ethernetcreate.ctx_cb = ctx_cb;
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.service_name = service_name;
|
||||||
tcpip_api_call(pppapi_do_pppoe_create, &msg.call);
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.concentrator_name = concentrator_name;
|
||||||
return msg.msg.ppp;
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.link_status_cb = link_status_cb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.ethernetcreate.ctx_cb = ctx_cb;
|
||||||
|
tcpip_api_call(pppapi_do_pppoe_create, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
result = PPPAPI_VAR_REF(msg).msg.ppp;
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
#endif /* PPPOE_SUPPORT */
|
#endif /* PPPOE_SUPPORT */
|
||||||
|
|
||||||
@ -205,7 +239,7 @@ pppapi_do_pppol2tp_create(struct tcpip_api_call_data *m)
|
|||||||
struct pppapi_msg *msg = (struct pppapi_msg *)m;
|
struct pppapi_msg *msg = (struct pppapi_msg *)m;
|
||||||
|
|
||||||
msg->msg.ppp = pppol2tp_create(msg->msg.msg.l2tpcreate.pppif,
|
msg->msg.ppp = pppol2tp_create(msg->msg.msg.l2tpcreate.pppif,
|
||||||
msg->msg.msg.l2tpcreate.netif, msg->msg.msg.l2tpcreate.ipaddr, msg->msg.msg.l2tpcreate.port,
|
msg->msg.msg.l2tpcreate.netif, API_EXPR_REF(msg->msg.msg.l2tpcreate.ipaddr), msg->msg.msg.l2tpcreate.port,
|
||||||
#if PPPOL2TP_AUTH_SUPPORT
|
#if PPPOL2TP_AUTH_SUPPORT
|
||||||
msg->msg.msg.l2tpcreate.secret,
|
msg->msg.msg.l2tpcreate.secret,
|
||||||
msg->msg.msg.l2tpcreate.secret_len,
|
msg->msg.msg.l2tpcreate.secret_len,
|
||||||
@ -225,20 +259,25 @@ pppapi_pppol2tp_create(struct netif *pppif, struct netif *netif, ip_addr_t *ipad
|
|||||||
const u8_t *secret, u8_t secret_len,
|
const u8_t *secret, u8_t secret_len,
|
||||||
ppp_link_status_cb_fn link_status_cb, void *ctx_cb)
|
ppp_link_status_cb_fn link_status_cb, void *ctx_cb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
ppp_pcb* result;
|
||||||
msg.msg.ppp = NULL;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.l2tpcreate.pppif = pppif;
|
PPPAPI_VAR_ALLOC_RETURN_NULL(msg);
|
||||||
msg.msg.msg.l2tpcreate.netif = netif;
|
|
||||||
msg.msg.msg.l2tpcreate.ipaddr = ipaddr;
|
PPPAPI_VAR_REF(msg).msg.ppp = NULL;
|
||||||
msg.msg.msg.l2tpcreate.port = port;
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.pppif = pppif;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.netif = netif;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.ipaddr = PPPAPI_VAR_REF(ipaddr);
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.port = port;
|
||||||
#if PPPOL2TP_AUTH_SUPPORT
|
#if PPPOL2TP_AUTH_SUPPORT
|
||||||
msg.msg.msg.l2tpcreate.secret = secret;
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.secret = secret;
|
||||||
msg.msg.msg.l2tpcreate.secret_len = secret_len;
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.secret_len = secret_len;
|
||||||
#endif /* PPPOL2TP_AUTH_SUPPORT */
|
#endif /* PPPOL2TP_AUTH_SUPPORT */
|
||||||
msg.msg.msg.l2tpcreate.link_status_cb = link_status_cb;
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.link_status_cb = link_status_cb;
|
||||||
msg.msg.msg.l2tpcreate.ctx_cb = ctx_cb;
|
PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.ctx_cb = ctx_cb;
|
||||||
tcpip_api_call(pppapi_do_pppol2tp_create, &msg.call);
|
tcpip_api_call(pppapi_do_pppol2tp_create, &PPPAPI_VAR_REF(msg).call);
|
||||||
return msg.msg.ppp;
|
result = PPPAPI_VAR_REF(msg).msg.ppp;
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
#endif /* PPPOL2TP_SUPPORT */
|
#endif /* PPPOL2TP_SUPPORT */
|
||||||
|
|
||||||
@ -261,10 +300,15 @@ pppapi_do_ppp_connect(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_connect(ppp_pcb *pcb, u16_t holdoff)
|
pppapi_connect(ppp_pcb *pcb, u16_t holdoff)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.connect.holdoff = holdoff;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_connect, &msg.call);
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.connect.holdoff = holdoff;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_connect, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -277,7 +321,7 @@ pppapi_do_ppp_listen(struct tcpip_api_call_data *m)
|
|||||||
{
|
{
|
||||||
struct pppapi_msg *msg = (struct pppapi_msg *)m;
|
struct pppapi_msg *msg = (struct pppapi_msg *)m;
|
||||||
|
|
||||||
return ppp_listen(msg->msg.ppp, msg->msg.msg.listen.addrs);
|
return ppp_listen(msg->msg.ppp, API_EXPR_REF(msg->msg.msg.listen.addrs));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -287,10 +331,15 @@ pppapi_do_ppp_listen(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_listen(ppp_pcb *pcb, struct ppp_addrs *addrs)
|
pppapi_listen(ppp_pcb *pcb, struct ppp_addrs *addrs)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.listen.addrs = addrs;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_listen, &msg.call);
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.listen.addrs = PPPAPI_VAR_REF(addrs);
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_listen, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
#endif /* PPP_SERVER */
|
#endif /* PPP_SERVER */
|
||||||
|
|
||||||
@ -313,10 +362,15 @@ pppapi_do_ppp_close(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_close(ppp_pcb *pcb, u8_t nocarrier)
|
pppapi_close(ppp_pcb *pcb, u8_t nocarrier)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.close.nocarrier = nocarrier;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_close, &msg.call);
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.close.nocarrier = nocarrier;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_close, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -338,9 +392,14 @@ pppapi_do_ppp_free(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_free(ppp_pcb *pcb)
|
pppapi_free(ppp_pcb *pcb)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
return tcpip_api_call(pppapi_do_ppp_free, &msg.call);
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
|
|
||||||
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_free, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -362,11 +421,16 @@ pppapi_do_ppp_ioctl(struct tcpip_api_call_data *m)
|
|||||||
err_t
|
err_t
|
||||||
pppapi_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg)
|
pppapi_ioctl(ppp_pcb *pcb, u8_t cmd, void *arg)
|
||||||
{
|
{
|
||||||
struct pppapi_msg msg;
|
err_t err;
|
||||||
msg.msg.ppp = pcb;
|
PPPAPI_VAR_DECLARE(msg);
|
||||||
msg.msg.msg.ioctl.cmd = cmd;
|
PPPAPI_VAR_ALLOC(msg);
|
||||||
msg.msg.msg.ioctl.arg = arg;
|
|
||||||
return tcpip_api_call(pppapi_do_ppp_ioctl, &msg.call);
|
PPPAPI_VAR_REF(msg).msg.ppp = pcb;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.ioctl.cmd = cmd;
|
||||||
|
PPPAPI_VAR_REF(msg).msg.msg.ioctl.arg = arg;
|
||||||
|
err = tcpip_api_call(pppapi_do_ppp_ioctl, &PPPAPI_VAR_REF(msg).call);
|
||||||
|
PPPAPI_VAR_FREE(msg);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* LWIP_PPP_API */
|
#endif /* LWIP_PPP_API */
|
||||||
|
@ -116,7 +116,7 @@ static const struct link_callbacks pppol2tp_callbacks = {
|
|||||||
|
|
||||||
/* Create a new L2TP session. */
|
/* Create a new L2TP session. */
|
||||||
ppp_pcb *pppol2tp_create(struct netif *pppif,
|
ppp_pcb *pppol2tp_create(struct netif *pppif,
|
||||||
struct netif *netif, ip_addr_t *ipaddr, u16_t port,
|
struct netif *netif, const ip_addr_t *ipaddr, u16_t port,
|
||||||
const u8_t *secret, u8_t secret_len,
|
const u8_t *secret, u8_t secret_len,
|
||||||
ppp_link_status_cb_fn link_status_cb, void *ctx_cb) {
|
ppp_link_status_cb_fn link_status_cb, void *ctx_cb) {
|
||||||
ppp_pcb *ppp;
|
ppp_pcb *ppp;
|
||||||
|
@ -58,7 +58,7 @@ static err_t pppos_write(ppp_pcb *ppp, void *ctx, struct pbuf *p);
|
|||||||
static err_t pppos_netif_output(ppp_pcb *ppp, void *ctx, struct pbuf *pb, u16_t protocol);
|
static err_t pppos_netif_output(ppp_pcb *ppp, void *ctx, struct pbuf *pb, u16_t protocol);
|
||||||
static err_t pppos_connect(ppp_pcb *ppp, void *ctx);
|
static err_t pppos_connect(ppp_pcb *ppp, void *ctx);
|
||||||
#if PPP_SERVER
|
#if PPP_SERVER
|
||||||
static err_t pppos_listen(ppp_pcb *ppp, void *ctx, struct ppp_addrs *addrs);
|
static err_t pppos_listen(ppp_pcb *ppp, void *ctx, const struct ppp_addrs *addrs);
|
||||||
#endif /* PPP_SERVER */
|
#endif /* PPP_SERVER */
|
||||||
static void pppos_disconnect(ppp_pcb *ppp, void *ctx);
|
static void pppos_disconnect(ppp_pcb *ppp, void *ctx);
|
||||||
static err_t pppos_destroy(ppp_pcb *ppp, void *ctx);
|
static err_t pppos_destroy(ppp_pcb *ppp, void *ctx);
|
||||||
@ -332,7 +332,7 @@ pppos_connect(ppp_pcb *ppp, void *ctx)
|
|||||||
|
|
||||||
#if PPP_SERVER
|
#if PPP_SERVER
|
||||||
static err_t
|
static err_t
|
||||||
pppos_listen(ppp_pcb *ppp, void *ctx, struct ppp_addrs *addrs)
|
pppos_listen(ppp_pcb *ppp, void *ctx, const struct ppp_addrs *addrs)
|
||||||
{
|
{
|
||||||
pppos_pcb *pppos = (pppos_pcb *)ctx;
|
pppos_pcb *pppos = (pppos_pcb *)ctx;
|
||||||
#if PPP_IPV4_SUPPORT
|
#if PPP_IPV4_SUPPORT
|
||||||
|
Loading…
x
Reference in New Issue
Block a user