You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
(19) |
May
(23) |
Jun
(24) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Kidong L. <bri...@us...> - 2004-04-07 07:04:07
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/wsp/all In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17505/src/xpt/bindings/wsp/all Modified Files: settings.c transact.c wsphttp.c Log Message: Added -Wall to CFLAGS, Removed unused variables and functions Index: settings.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/wsp/all/settings.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** settings.c 2 May 2003 22:05:10 -0000 1.2 --- settings.c 7 Apr 2004 06:51:09 -0000 1.3 *************** *** 454,457 **** --- 454,459 ---- retValue = "SDS"; break; + default: + break; } /* End bearer switch */ *************** *** 497,500 **** --- 499,504 ---- retValue = "TETRA SDS MSISDN"; break; + default: + break; } /* End address switch */ Index: transact.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/wsp/all/transact.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** transact.c 6 Aug 2002 21:03:21 -0000 1.1 --- transact.c 7 Apr 2004 06:51:09 -0000 1.2 *************** *** 63,69 **** #endif - #ifdef WIN32 #include <stdio.h> /* for sprintf */ - #endif --- 63,67 ---- *************** *** 741,747 **** { unsigned int rc = SML_ERR_OK; - const char *contentType = NULL; const char *docName = NULL; - size_t valueSize = 0; char *tmp = NULL; --- 739,743 ---- Index: wsphttp.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/wsp/all/wsphttp.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wsphttp.c 6 Aug 2002 21:03:21 -0000 1.1 --- wsphttp.c 7 Apr 2004 06:51:09 -0000 1.2 *************** *** 181,185 **** const char *httpGetStaticRequestHdrs(WspHttpParms_t *parmPtr) { - unsigned int addLen = 0; unsigned int hdrSize = 0; XPTDEBUG((" httpGetStaticRequestHdrs(%lx)\n", (unsigned long) parmPtr)); --- 181,184 ---- *************** *** 222,226 **** const char *contentLength) { - unsigned int addLen = 0; int headerSize = 0; char *date = getRFC822Date(); --- 221,224 ---- *************** *** 599,604 **** unsigned int parseAuthVerification(WspAuthentication_t *auth, const char *source) { - char *data = NULL; - XPTDEBUG((" parseAuthVerification(%lx, %s)\n", (unsigned long) auth, source)); --- 597,600 ---- *************** *** 903,921 **** void auth(WspHttpParms_t *parmPtr) { - char *basic = "Authorization: Basic \"base64(\"userid:password\")\""NL; - - char *digest = "Authorization: Digest " \ - "username=\"settings->userName\" " \ - "realm=\"realm\" " \ - "nonce = \"serverNonceValue\" " \ - "uri=\"transaction->uri\" " \ - "response=\"request-digest\" " \ - "algorithm = \"<MD5|MD5-sess|token>\" " \ - "cnonce=\"clientNonceValue\" " \ - "opaque = \"opaqueValue\" " \ - "qop=\"<auth|auth-int|token>\" " \ - "nc=<nonceCountValue> " \ - "<authParmToken>=<authParmValue>"NL; - if (parmPtr->request->authorization != NULL) { /* Binding MUST support, Specified by client, or not included */ --- 899,902 ---- |
From: Kidong L. <bri...@us...> - 2004-04-07 07:04:07
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/obex/smlobex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17505/src/xpt/bindings/obex/smlobex Modified Files: obex.c Log Message: Added -Wall to CFLAGS, Removed unused variables and functions Index: obex.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/obex/smlobex/obex.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** obex.c 15 Sep 2003 12:52:25 -0000 1.3 --- obex.c 7 Apr 2004 06:51:08 -0000 1.4 *************** *** 57,60 **** --- 57,62 ---- #include <assert.h> + #include <time.h> /* for time() */ + #ifndef min #define min(a, b) ((a) < (b) ? (a) : (b)) |
From: Kidong L. <bri...@us...> - 2004-04-07 07:04:07
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/http/all In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17505/src/xpt/bindings/http/all Modified Files: httptrans.c xpt-http.c Log Message: Added -Wall to CFLAGS, Removed unused variables and functions Index: httptrans.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/http/all/httptrans.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** httptrans.c 15 Sep 2003 12:52:25 -0000 1.3 --- httptrans.c 7 Apr 2004 06:51:07 -0000 1.4 *************** *** 50,56 **** // %%% luz: required for sprintf - #ifdef __MWERKS__ #include <stdio.h> - #endif #include "httpserverports.h" --- 50,54 ---- *************** *** 69,76 **** #endif - #ifdef WIN32 - #include <stdio.h> // for sprintf - #endif - /*---------------------------------*/ #ifdef LINK_TRANSPORT_STATICALLY --- 67,70 ---- *************** *** 144,148 **** TcpRc_t rc; - HttpTransportInfoPtr_t transInfo = ( HttpTransportInfoPtr_t )privateTransportInfo; HttpTransportServiceInfoPtr_t info = NULL; --- 138,141 ---- Index: xpt-http.c =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/xpt/bindings/http/all/xpt-http.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** xpt-http.c 3 Apr 2004 12:05:11 -0000 1.4 --- xpt-http.c 7 Apr 2004 06:51:07 -0000 1.5 *************** *** 418,422 **** HttpAuthenticationDest_t dest) { - unsigned int cbHeaderSize = p->cbCacheSize - p->cbCacheUsed; HttpAuthenticationType_t fType = authGetType (auth, dest); const char *pszURI; --- 418,421 ---- *************** *** 1864,1869 **** else { - BufferSize_t cbDataToCopy = min (p->cbCacheUsed, p->cbDataToRead); - BufferSize_t cbSourceDataProcessed = cbDataToCopy; BufferSize_t cbBytesCopied = 0; BufferSize_t cbBytes = p->cbCacheUsed; --- 1863,1866 ---- |