Lines Matching refs:props

909 	char **props = NULL;  in nsldapi_sasl_secprops()  local
927 props = ldap_str2charray( inp, "," ); in nsldapi_sasl_secprops()
930 if( props == NULL || secprops == NULL ) { in nsldapi_sasl_secprops()
934 for( i=0; props[i]; i++ ) { in nsldapi_sasl_secprops()
935 if( strcasecmp(props[i], "none") == 0 ) { in nsldapi_sasl_secprops()
938 } else if( strcasecmp(props[i], "noactive") == 0 ) { in nsldapi_sasl_secprops()
942 } else if( strcasecmp(props[i], "noanonymous") == 0 ) { in nsldapi_sasl_secprops()
946 } else if( strcasecmp(props[i], "nodict") == 0 ) { in nsldapi_sasl_secprops()
950 } else if( strcasecmp(props[i], "noplain") == 0 ) { in nsldapi_sasl_secprops()
954 } else if( strcasecmp(props[i], "forwardsec") == 0 ) { in nsldapi_sasl_secprops()
958 } else if( strcasecmp(props[i], "passcred") == 0 ) { in nsldapi_sasl_secprops()
962 } else if( strncasecmp(props[i], in nsldapi_sasl_secprops()
964 if( isdigit( props[i][sizeof("minssf")] ) ) { in nsldapi_sasl_secprops()
966 min_ssf = atoi( &props[i][sizeof("minssf")] ); in nsldapi_sasl_secprops()
971 } else if( strncasecmp(props[i], in nsldapi_sasl_secprops()
973 if( isdigit( props[i][sizeof("maxssf")] ) ) { in nsldapi_sasl_secprops()
975 max_ssf = atoi( &props[i][sizeof("maxssf")] ); in nsldapi_sasl_secprops()
980 } else if( strncasecmp(props[i], in nsldapi_sasl_secprops()
982 if( isdigit( props[i][sizeof("maxbufsize")] ) ) { in nsldapi_sasl_secprops()
984 maxbufsize = atoi( &props[i][sizeof("maxbufsize")] ); in nsldapi_sasl_secprops()
1011 ldap_charray_free( props ); in nsldapi_sasl_secprops()