Home | History | Annotate | Download | only in racoon

Lines Matching refs:vmbuf

53 #include "vmbuf.h"
109 gssapi_vm2gssbuf(vchar_t *vmbuf, gss_buffer_t gsstoken)
112 gsstoken->value = racoon_malloc(vmbuf->l);
115 memcpy(gsstoken->value, vmbuf->v, vmbuf->l);
116 gsstoken->length = vmbuf->l;
122 gssapi_gss2vmbuf(gss_buffer_t gsstoken, vchar_t **vmbuf)
125 *vmbuf = vmalloc(gsstoken->length);
126 if (*vmbuf == NULL)
128 memcpy((*vmbuf)->v, gsstoken->value, gsstoken->length);
129 (*vmbuf)->l = gsstoken->length;
690 vchar_t *vmbuf;
734 if (gssapi_gss2vmbuf(id, &vmbuf) < 0) {
745 return vmbuf;