New radius_paircreate() function that takes a REQUEST* and a
authoraland <aland>
Fri, 20 Apr 2007 14:30:11 +0000 (14:30 +0000)
committeraland <aland>
Fri, 20 Apr 2007 14:30:11 +0000 (14:30 +0000)
commitdbfd4207e0055118be5ed1bdd49df2d4320439b2
tree8c989fd15c7b0d50ca3c950a003b404bda2e52be
parent0048209530439075a82ccf878f0e73a21d06b0df
New radius_paircreate() function that takes a REQUEST* and a
VALUE_PAIR**, along with the attr & type of paircreate().

It creates the pair (or exits if it can't, because it's OOM).
then adds the pair to the VP**.

This ends up removing a fair amount of code in the modules &&
server core, that did:

vp = pairmake()
if (!vp) {
oom
...
}

pairadd()
src/include/radiusd.h
src/main/valuepair.c