]> git.ipfire.org Git - thirdparty/squid.git/blame - src/fs/rock/RockIoRequests.cc
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / fs / rock / RockIoRequests.cc
CommitLineData
e2851fe7 1/*
bbc27441
AJ
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
e2851fe7
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 79 Disk IO Routines */
10
f7f3304a 11#include "squid.h"
e2851fe7
AR
12#include "fs/rock/RockIoRequests.h"
13
14CBDATA_NAMESPACED_CLASS_INIT(Rock, ReadRequest);
15CBDATA_NAMESPACED_CLASS_INIT(Rock, WriteRequest);
16
17Rock::ReadRequest::ReadRequest(const ::ReadRequest &base,
9199139f
AR
18 const IoState::Pointer &anSio):
19 ::ReadRequest(base),
20 sio(anSio)
e2851fe7
AR
21{
22}
23
24Rock::WriteRequest::WriteRequest(const ::WriteRequest &base,
ce49546e 25 const IoState::Pointer &anSio):
9199139f 26 ::WriteRequest(base),
93910d5c 27 sio(anSio),
ce49546e 28 sidCurrent(-1),
5296bbd9
AR
29 sidNext(-1),
30 eof(false)
e2851fe7
AR
31{
32}