Home | History | Annotate | Download | only in dropbear

Lines Matching refs:methods

41 /* Send a "none" auth request to get available methods */
138 unsigned char * methods = NULL;
173 methods = buf_getstring(ses.payload, &methlen);
183 TRACE(("Methods (len %d): '%s'", methlen, methods))
190 if (methods[i] == ',') {
191 methods[i] = '\0';
195 tok = methods; /* tok stores the next method we'll compare */
197 if (methods[i] == '\0') {
217 tok = &methods[i+1]; /* Must make sure we don't use it after the
223 m_free(methods);
276 dropbear_exit("No auth methods could be used.");