]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/DiskIO/DiskDaemon/diomsg.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / DiskIO / DiskDaemon / diomsg.h
index 897985d408ef32e46c1d3aaa7f921b05e2add882..7d932829d27d36470219ed855cdc0bd1b8afbfd0 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
+
 /*
  * diomsg.h
  *
@@ -17,14 +25,14 @@ enum {
     _MQD_UNLINK
 };
 
-struct RefCountable_;
+class Lock;
 
 struct diomsg {
     mtyp_t mtype;
     int id;
     int seq_no;
     void * callback_data;
-    RefCountable_ * requestor;
+    Lock * requestor;
     size_t size;
     off_t offset;
     int status;
@@ -34,3 +42,4 @@ struct diomsg {
 };
 
 #endif /* SQUID_DIOMSG_H__ */
+