~ubuntu-branches/ubuntu/utopic/w3m/utopic

« back to all changes in this revision

Viewing changes to html.h

  • Committer: Package Import Robot
  • Author(s): Tatsuya Kinoshita
  • Date: 2013-12-17 19:57:42 UTC
  • mfrom: (3.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20131217195742-2mdqsjidjuwj3xz5
Tags: 0.5.3-13
* New patch 240_win64gc.patch for GC on Cygwin64
* New patch 250_schemebug.patch to fix scheme bug (closes: #650747)
* New patch 260_openssl.patch from openSUSE for OpenSSL issues
* New patch 270_refresh-url.patch to accept single quoted URL
* New patch 280_search-next.patch to fix crash after SEARCH_NEXT
* New patch 290_closedir.patch to fix a directory descriptor leak
* Update 230_cygwin-lang.patch to really fix
* Update 090_parallel-make.patch to fix scripts and w3mimg (closes: #726188)
* Update 040_link_gcc45.patch to 040_link-gtk2.patch
* Update 050_autotools-config.patch with autotools-dev 20130810.1
* Drop 050_autotools-config.patch (comment out)
* Update 900_ChangeLog.patch
* Update 015_debian-version.patch to 0.5.3+debian-13
* Use LFS_CFLAGS to support large file (closes: #493956)
* Use autotools-dev dh addon again (closes: #732086)
* Update gitlog2changelog to fix paren handling
* debian/rules: builddir fixes
* Use dpkg-maintscript-helper to remove obsolete conffile
* Update Standards-Version to 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* $Id: html.h,v 1.31 2010/08/14 01:29:40 htrb Exp $ */
2
2
#ifndef _HTML_H
3
3
#define _HTML_H
 
4
#include "config.h"
4
5
#ifdef USE_SSL
5
6
#include <openssl/bio.h>
6
7
#include <openssl/x509.h>
7
8
#include <openssl/ssl.h>
8
9
#endif                          /* USE_SSL */
9
10
 
10
 
#include "istream.h"
11
 
 
12
11
#define StrUFgets(f) StrISgets((f)->stream)
13
12
#define StrmyUFgets(f) StrmyISgets((f)->stream)
14
13
#define UFgetc(f) ISgetc((f)->stream)
15
14
#define UFundogetc(f) ISundogetc((f)->stream)
16
 
#define UFread(f,buf,len) ISread((f)->stream,buf,len)
17
15
#define UFclose(f) (void)(ISclose((f)->stream) == 0 && ((f)->stream = NULL))
18
16
#define UFfileno(f) ISfileno((f)->stream)
19
17
 
62
60
    int is_nocache;
63
61
} ParsedURL;
64
62
 
 
63
union input_stream;
65
64
typedef struct {
66
65
    unsigned char scheme;
67
66
    char is_cgi;
68
67
    char encoding;
69
 
    InputStream stream;
 
68
    union input_stream *stream;
70
69
    char *ext;
71
70
    int compression;
72
71
    int content_encoding;