~ubuntu-branches/ubuntu/raring/clamav/raring

« back to all changes in this revision

Viewing changes to libclamav/others.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran
  • Date: 2008-09-05 17:25:34 UTC
  • mfrom: (0.35.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080905172534-yi3f8fkye1o7u1r3
* New upstream version (closes: #497662, #497773)
  - lots of new options for clamd.conf
  - fixes CVEs CVE-2008-3912, CVE-2008-3913, CVE-2008-3914, and
    CVE-2008-1389
* No longer supports --unzip option, so typo is gone (closes: #496276)
* Translations:
  - sv (thanks Martin Bagge <brother@bsnet.se>) (closes: #491760)

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
unsigned char *cli_md5digest(int desc);
261
261
char *cli_md5stream(FILE *fs, unsigned char *digcpy);
262
262
char *cli_md5file(const char *filename);
 
263
int cli_unlink(const char *pathname);
263
264
int cli_readn(int fd, void *buff, unsigned int count);
264
265
int cli_writen(int fd, const void *buff, unsigned int count);
265
266
char *cli_gentemp(const char *dir);
274
275
int cli_checklimits(const char *, cli_ctx *, unsigned long, unsigned long, unsigned long);
275
276
int cli_updatelimits(cli_ctx *, unsigned long);
276
277
unsigned long cli_getsizelimit(cli_ctx *, unsigned long);
 
278
int cli_matchregex(const char *str, const char *regex);
277
279
#endif