~ubuntu-branches/ubuntu/hardy/gxine/hardy

« back to all changes in this revision

Viewing changes to src/http.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-03-21 11:24:59 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080321112459-igb0jy01nytpdrzt
Tags: 0.5.901-1ubuntu1
* merge debian changes for hardy PPA. Remaining changes:
  - debian/control: added Xb-Npp-xxx tags accordingly to "firefox distro
    add-on suport" spec,
    (https://blueprints.launchpad.net/ubuntu/+spec/firefox-distro-addon-support)
* Feature Freeze exception granted in LP: #204563
* New upstream release fixes playing DVDs. LP: #128864
* mime.default: add "x-content/video-dvd;x-content/video-vcd;x-content/video-svcd;"
  to get it listed as a player for dvd and video cds in nautilus. Thanks to
  Sebastien Bacher for the hint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2002-2005 the xine project
 
2
 * Copyright (C) 2002-2006 the xine project
3
3
 *
4
4
 * This file is part of xine, a free video player.
5
5
 *
17
17
 * along with this program; if not, write to the Free Software
18
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
19
19
 *
20
 
 * $Id: http.c,v 1.28 2006/04/08 14:44:44 dsalt Exp $
21
20
 */
22
21
 
23
22
#include "globals.h"
51
50
typedef struct http_s http_t;
52
51
 
53
52
struct http_s {
54
 
 
55
 
  int              fh;
56
 
 
57
53
  off_t            curpos;
58
54
  off_t            contentlength;
59
55
 
70
66
  char            *password;
71
67
  char            *host;
72
68
  int              port;
 
69
 
 
70
  int              fh;
 
71
 
73
72
  char            *filename;
74
73
 
75
74
  char            *proxyuser;