HomeSort by: relevance | last modified time | path
    Searched defs:combuf (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/dist/ipsec-tools/src/racoon/
admin.c 107 char *combuf = NULL; local
138 if ((combuf = racoon_malloc(com.ac_len)) == 0) {
145 while ((len = recv(so2, combuf, com.ac_len, 0)) < 0) {
154 error = admin_process(so2, combuf);
164 if (combuf)
165 racoon_free(combuf);
184 admin_process(int so2, char *combuf)
186 struct admin_com *com = (struct admin_com *)combuf;
635 struct admin_com *combuf; local
639 tlen = sizeof(*combuf) + buf->l
    [all...]
privsep.c 127 struct admin_com *combuf; local
159 if ((combuf = (struct admin_com *)racoon_malloc(com.ac_len)) == NULL) {
166 while ((len = recvfrom(sock, (char *)combuf,
185 *bufp = (struct privsep_com_msg *)combuf;
325 struct privsep_com_msg *combuf; local
332 if (privsep_recv(privsep_sock[0], &combuf, &len) != 0)
336 if (len < sizeof(*combuf)) {
342 data = (char *)(combuf + 1);
343 totallen = sizeof(*combuf);
346 data += combuf->bufs.buflen[i]
    [all...]
racoonctl.c 254 vchar_t *combuf; local
296 combuf = get_combuf(ac, (const char **)(intptr_t)av);
297 if (!combuf)
301 racoon_hexdump(combuf, ((struct admin_com *)combuf)->ac_len);
305 if (com_send(combuf) != 0)
308 vfree(combuf);
311 if (com_recv(&combuf) != 0)
313 if (handle_recv(combuf) != 0)
315 vfree(combuf);
    [all...]

Completed in 50 milliseconds