summaryrefslogtreecommitdiffstats
path: root/gatchat/gatppp.h
diff options
context:
space:
mode:
authorPhilip Paeps <philip@paeps.cx>2014-06-19 12:07:05 +0200
committerDenis Kenzior <denkenz@gmail.com>2014-06-21 11:50:34 -0500
commita88662d23c45f49d9af5a508d4d0a778950b2420 (patch)
tree493246fd2c2789995a6530ca8f379e6a4ed402c8 /gatchat/gatppp.h
parent1dd85809307b200bfe87e6a71c68fa244cb15bc6 (diff)
downloadofono-a88662d23c45f49d9af5a508d4d0a778950b2420.tar.bz2
gatchat: implement PAP authentication
Make the authentication method configurable, CHAP or PAP, defaulting to CHAP (i.e.: previous behaviour). Implementation details: o If PAP is configured, we NAK the CHAP authentication protocol option in LCP configuration requests and suggest PAP instead. This works around the amusing requirement of 3GPP TS 29.061 that modems must send a forced positive acknowledgement of the authentication method tried (i.e.: the modem will successfully accept any CHAP handshake, but if the network only supports PAP, the modem will hang up when it tries and fails to activate the PDP context) o The PAP Authenticate-Request is resent a hard-coded three times at ten-second intervals. This may be a bit too persistent. Chances are if it doesn't work the first time, it'll never work, but the RFC insists that we MUST retry.
Diffstat (limited to 'gatchat/gatppp.h')
-rw-r--r--gatchat/gatppp.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gatchat/gatppp.h b/gatchat/gatppp.h
index b5a22346..213f7e90 100644
--- a/gatchat/gatppp.h
+++ b/gatchat/gatppp.h
@@ -43,6 +43,11 @@ typedef enum _GAtPPPDisconnectReason {
G_AT_PPP_REASON_LOCAL_CLOSE, /* Normal user close */
} GAtPPPDisconnectReason;
+typedef enum _GAtPPPAuthMethod {
+ G_AT_PPP_AUTH_METHOD_CHAP,
+ G_AT_PPP_AUTH_METHOD_PAP,
+} GAtPPPAuthMethod;
+
typedef void (*GAtPPPConnectFunc)(const char *iface, const char *local,
const char *peer,
const char *dns1, const char *dns2,
@@ -74,6 +79,9 @@ gboolean g_at_ppp_set_credentials(GAtPPP *ppp, const char *username,
const char *g_at_ppp_get_username(GAtPPP *ppp);
const char *g_at_ppp_get_password(GAtPPP *ppp);
+gboolean g_at_ppp_set_auth_method(GAtPPP *ppp, GAtPPPAuthMethod method);
+GAtPPPAuthMethod g_at_ppp_get_auth_method(GAtPPP *ppp);
+
void g_at_ppp_set_recording(GAtPPP *ppp, const char *filename);
void g_at_ppp_set_server_info(GAtPPP *ppp, const char *remote_ip,