Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:mnc

927  * Rules for figuring out MNC length based on IMSI for SIM cards that do not
928 * include MNC length field.
940 return 2; /* Networks in Finland use 2-digit MNC */
950 char *pos, mnc[4];
957 /* MNC (2 or 3 digits) */
962 wpa_printf(MSG_INFO, "Failed to get MNC length from (U)SIM "
968 mnc[0] = '0';
969 mnc[1] = imsi[3];
970 mnc[2] = imsi[4];
972 mnc[0] = imsi[3];
973 mnc[1] = imsi[4];
974 mnc[2] = imsi[5];
976 mnc[3] = '\0';
980 "@wlan.mnc%s.mcc%c%c%c.3gppnetwork.org",
981 mnc, imsi[0], imsi[1], imsi[2]);