~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/tests/stub_HttpReply.cc

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: stub_HttpReply.cc,v 1.4 2007/08/13 17:20:58 hno Exp $
 
2
 * $Id$
3
3
 *
4
4
 * DEBUG: section 84    Helper process maintenance
5
5
 * AUTHOR: Robert Collins
20
20
 *  it under the terms of the GNU General Public License as published by
21
21
 *  the Free Software Foundation; either version 2 of the License, or
22
22
 *  (at your option) any later version.
23
 
 *  
 
23
 *
24
24
 *  This program is distributed in the hope that it will be useful,
25
25
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26
26
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27
27
 *  GNU General Public License for more details.
28
 
 *  
 
28
 *
29
29
 *  You should have received a copy of the GNU General Public License
30
30
 *  along with this program; if not, write to the Free Software
31
31
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
46
46
}
47
47
 
48
48
void
49
 
HttpReply::absorb(HttpReply * new_rep)
50
 
{
51
 
    fatal ("Not implemented");
52
 
}
53
 
 
54
 
void
55
 
HttpReply::setHeaders(HttpVersion ver, http_status status, const char *reason,
 
49
HttpReply::setHeaders(http_status status, const char *reason,
56
50
                      const char *ctype, int64_t clen, time_t lmt, time_t expires)
57
51
{
58
52
    fatal ("Not implemented");
90
84
}
91
85
 
92
86
bool
93
 
HttpReply::expectingBody(method_t, int64_t&) const
 
87
HttpReply::expectingBody(const HttpRequestMethod&, int64_t&) const
94
88
{
95
89
    fatal ("Not implemented");
96
90
    return false;
114
108
{
115
109
    fatal ("Not implemented");
116
110
}
 
111
 
 
112
HttpReply *
 
113
HttpReply::clone() const
 
114
{
 
115
    fatal("Not implemented");
 
116
    return NULL;
 
117
}
 
118
 
 
119
bool
 
120
HttpReply::inheritProperties(const HttpMsg *aMsg)
 
121
{
 
122
    fatal("Not implemented");
 
123
    return false;
 
124
}