Skip to content

Commit

Permalink
Release 1.33.13
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.code.sf.net/p/xmlrpc-c/code@2612 98333e67-4a24-44d7-a75c-e53540dd3050
  • Loading branch information
giraffedata committed Jun 29, 2014
1 parent 73db103 commit 79d5930
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
7 changes: 7 additions & 0 deletions include/xmlrpc-c/abyss.h
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,13 @@ char *
RequestHeaderValue(TSession * const sessionP,
const char * const name);

XMLRPC_ABYSS_EXPORTED
abyss_bool
RequestAuth(TSession * const sessionP,
const char * const credential,
const char * const user,
const char * const pass);

XMLRPC_ABYSS_EXPORTED
abyss_bool
ResponseAddField(TSession * const sessionP,
Expand Down
3 changes: 1 addition & 2 deletions lib/abyss/src/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ RequestValidURIPath(TSession * const sessionP) {



bool
abyss_bool
RequestAuth(TSession * const sessionP,
const char * const credential,
const char * const user,
Expand All @@ -1258,7 +1258,6 @@ RequestAuth(TSession * const sessionP,
const char * authType;
NextToken((const char **)&authHdrPtr);
GetTokenConst(&authHdrPtr, &authType);
authType = GetToken(&authHdrPtr);
if (authType) {
if (xmlrpc_strcaseeq(authType, "basic")) {
const char * userPass;
Expand Down
6 changes: 0 additions & 6 deletions lib/abyss/src/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ RequestRead(TSession * const sessionP,
void RequestInit(TSession * const r,TConn * const c);
void RequestFree(TSession * const r);

bool
RequestAuth(TSession * const sessionP,
const char * const credential,
const char * const user,
const char * const pass);

/*********************************************************************
** HTTP
*********************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion version.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
###############################################################################
XMLRPC_MAJOR_RELEASE = 1
XMLRPC_MINOR_RELEASE = 33
XMLRPC_POINT_RELEASE = 12
XMLRPC_POINT_RELEASE = 13

0 comments on commit 79d5930

Please sign in to comment.