Home
last modified time | relevance | path

Searched refs:last_alloc (Results 1 – 2 of 2) sorted by relevance

/third_party/libwebsockets/plugins/ssh-base/
Dsshd.c988 pss->last_alloc = sshd_zalloc(pss->len + 1); in lws_ssh_parse_plaintext()
990 pss->last_alloc, pss->state_after_string); in lws_ssh_parse_plaintext()
991 if (!pss->last_alloc) { in lws_ssh_parse_plaintext()
1001 pss->last_alloc[pss->npos++] = *p++; in lws_ssh_parse_plaintext()
1004 pss->last_alloc[pss->npos] = '\0'; in lws_ssh_parse_plaintext()
1023 pss->ua->username = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
1024 pss->last_alloc = NULL; /* it was adopted */ in lws_ssh_parse_plaintext()
1030 pss->ua->service = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
1031 pss->last_alloc = NULL; /* it was adopted */ in lws_ssh_parse_plaintext()
1092 pss->ua->alg = (char *)pss->last_alloc; in lws_ssh_parse_plaintext()
[all …]
/third_party/libwebsockets/plugins/ssh-base/include/
Dlws-ssh.h488 uint8_t *last_alloc; member