First page Back Continue Last page Overview Graphics
static XkReturn
static XkReturn
aspPop(Sessn s, Sessn ds, Msg *msg, void *inHdr)
{
AspHdr *h = (AspHdr *) inHdr;
/* truncate message to length shown in header */
if ((h->ulen - HLEN) < msgLen(msg))
msgTruncate(msg, (int) h->ulen);
/* pass message up the protocol stack */
return xDemux(xGetUp(s), s, msg);
}
Notes: