Diff for /libaitwww/inc/aitwww.h between versions 1.5 and 1.5.4.1

version 1.5, 2012/09/20 14:19:45 version 1.5.4.1, 2013/01/17 14:07:19
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 50  SUCH DAMAGE. Line 50  SUCH DAMAGE.
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/queue.h>  #include <sys/queue.h>
 #include <sys/uio.h>  #include <sys/uio.h>
#include <aitio.h>#include <elwix.h>
   
   
 /* URL staff ... */  /* URL staff ... */
Line 232  int www_cmptype(const char *ct, const char *type); Line 232  int www_cmptype(const char *ct, const char *type);
  *   *
  * @str = query string   * @str = query string
  * @delim = delimiter   * @delim = delimiter
 * return: NULL error or AV pair, must be io_free() after use! * return: NULL error or AV pair, must be e_free() after use!
  */   */
 ait_val_t *www_getpair(char ** __restrict str, const char *delim);  ait_val_t *www_getpair(char ** __restrict str, const char *delim);
 /*  /*
Line 253  inline void www_unescape(char * __restrict str); Line 253  inline void www_unescape(char * __restrict str);
  * www_undot() - Undotted and clean WWW query filename   * www_undot() - Undotted and clean WWW query filename
  *   *
  * @pname = query filename   * @pname = query filename
 * return: =NULL error or !=NULL allocated valid filename, after use you must call io_freeVar() * return: =NULL error or !=NULL allocated valid filename, after use you must call ait_freeVar()
  */   */
 ait_val_t *www_undot(const char * __restrict pname);  ait_val_t *www_undot(const char * __restrict pname);
   
Line 304  int www_XMLGet(const char *csXML, struct tagReqXML *xm Line 304  int www_XMLGet(const char *csXML, struct tagReqXML *xm
  * www_b64encode() - Base64 encode function   * www_b64encode() - Base64 encode function
  *   *
  * @src = source data   * @src = source data
 * return: NULL error or !=NULL encoded variable, after use call io_freeVar() * return: NULL error or !=NULL encoded variable, after use call ait_freeVar()
  */   */
 ait_val_t *www_b64encode(ait_val_t * __restrict src);  ait_val_t *www_b64encode(ait_val_t * __restrict src);
 /*  /*
  * www_b64decode() - Base64 decode function   * www_b64decode() - Base64 decode function
  *   *
  * @src = source encoded data   * @src = source encoded data
 * return: NULL error or !=NULL decoded variable, after use call io_freeVar() * return: NULL error or !=NULL decoded variable, after use call ait_freeVar()
  */   */
 ait_val_t *www_b64decode(ait_val_t * __restrict src);  ait_val_t *www_b64decode(ait_val_t * __restrict src);
   

Removed from v.1.5  
changed lines
  Added in v.1.5.4.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>