Lines Matching refs:combuf
105 char *combuf = NULL; in admin_handler() local
134 if ((combuf = racoon_malloc(com.ac_len)) == 0) { in admin_handler()
141 while ((len = recv(so2, combuf, com.ac_len, 0)) < 0) { in admin_handler()
156 error = admin_process(so2, combuf); in admin_handler()
160 if (combuf) in admin_handler()
161 racoon_free(combuf); in admin_handler()
170 admin_process(so2, combuf) in admin_process() argument
172 char *combuf;
174 struct admin_com *com = (struct admin_com *)combuf;
503 admin_reply(so, combuf, buf) in admin_reply() argument
505 struct admin_com *combuf;
512 tlen = sizeof(*combuf) + buf->l;
514 tlen = sizeof(*combuf);
523 memcpy(retbuf, combuf, sizeof(*combuf));
527 memcpy(retbuf + sizeof(*combuf), buf->v, buf->l);