HomeSort by relevance Sort by last modified time
    Searched full:combuf (Results 1 - 4 of 4) sorted by null

  /external/ipsec-tools/src/racoon/
privsep.c 108 struct admin_com *combuf; local
134 if ((combuf = (struct admin_com *)racoon_malloc(com.ac_len)) == NULL) {
141 while ((len = recvfrom(sock, (char *)combuf,
158 *bufp = (struct privsep_com_msg *)combuf;
287 struct privsep_com_msg *combuf; local
295 if (privsep_recv(privsep_sock[0], &combuf, &len) != 0)
299 if (len < sizeof(*combuf)) {
305 data = (char *)(combuf + 1);
306 totallen = sizeof(*combuf);
309 data += combuf->bufs.buflen[i]
    [all...]
admin.c 105 char *combuf = NULL; local
134 if ((combuf = racoon_malloc(com.ac_len)) == 0) {
141 while ((len = recv(so2, combuf, com.ac_len, 0)) < 0) {
156 error = admin_process(so2, combuf);
160 if (combuf)
161 racoon_free(combuf);
170 admin_process(so2, combuf)
172 char *combuf;
174 struct admin_com *com = (struct admin_com *)combuf;
503 admin_reply(so, combuf, buf
    [all...]
kmpstat.c 121 com_send(combuf)
122 vchar_t *combuf;
126 if ((len = send(so, combuf->v, combuf->l, 0)) == -1) {
racoonctl.c 259 vchar_t *combuf; local
301 combuf = get_combuf(ac, av);
302 if (!combuf)
306 racoon_hexdump(combuf, ((struct admin_com *)combuf)->ac_len);
310 if (com_send(combuf) != 0)
313 vfree(combuf);
315 if (com_recv(&combuf) != 0)
317 if (handle_recv(combuf) != 0)
320 vfree(combuf);
    [all...]

Completed in 119 milliseconds