diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-06-29 11:53:11 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-06-29 11:53:11 -0500 |
commit | 820b1f55c8f9e615ef860327ef58a54006ec8822 (patch) | |
tree | f760579f42c3d87d9dc415848414cfa4b8a6e4a2 /gatchat/ppp_lcp.c | |
parent | 969862337a77d10081cc72ca9ec0aaafaa3e977e (diff) |
ppp: Refactor server-side API
The biggest update here is that the server needs to be in dormant mode
by default, so as not to send a Configure-Req to the peer until the peer
is ready. This requires adding special constructor for LCP to
initialize it to Stopped state instead of initial state.
Along with this, we pass the server local IP directly to the ppp server
constructor.
Diffstat (limited to 'gatchat/ppp_lcp.c')
-rw-r--r-- | gatchat/ppp_lcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c index 2a5370b9..3cfab5c7 100644 --- a/gatchat/ppp_lcp.c +++ b/gatchat/ppp_lcp.c @@ -304,7 +304,7 @@ void lcp_free(struct pppcp_data *pppcp) pppcp_free(pppcp); } -struct pppcp_data *lcp_new(GAtPPP *ppp) +struct pppcp_data *lcp_new(GAtPPP *ppp, gboolean is_server) { struct pppcp_data *pppcp; struct lcp_data *lcp; @@ -313,7 +313,7 @@ struct pppcp_data *lcp_new(GAtPPP *ppp) if (!lcp) return NULL; - pppcp = pppcp_new(ppp, &lcp_proto); + pppcp = pppcp_new(ppp, &lcp_proto, is_server); if (!pppcp) { g_free(lcp); return NULL; |