MCPcopy Create free account
hub / github.com/3proxy/3proxy / copyauth

Function copyauth

src/proxymain.c:871–877  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869
870
871struct auth * copyauth (struct auth * authfuncs){
872 struct auth * newauth = NULL;
873
874 newauth = authfuncs = itcopy(authfuncs, sizeof(struct auth));
875 for( ; authfuncs; authfuncs = authfuncs->next = itcopy(authfuncs->next, sizeof(struct auth)));
876 return newauth;
877}
878
879struct ace * copyacl (struct ace *ac){
880 struct ace * ret = NULL;

Callers 1

proxymain.cFile · 0.85

Calls 1

itcopyFunction · 0.85

Tested by

no test coverage detected