aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-14 11:08:02 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-14 11:08:02 +0000
commit1debac4608e78f4a7800252ba9a91b4f5a376b42 (patch)
treea08d8171e63470765092e49bdef0c1e333a3768c /src
parentfc585357911e5d729a750d5b5f226063b05ad2c9 (diff)
downloadgnunet-1debac4608e78f4a7800252ba9a91b4f5a376b42.tar.gz
gnunet-1debac4608e78f4a7800252ba9a91b4f5a376b42.zip
dos2unix
Diffstat (limited to 'src')
-rw-r--r--src/util/disk.h138
1 files changed, 69 insertions, 69 deletions
diff --git a/src/util/disk.h b/src/util/disk.h
index 793b8219f..f287834b8 100644
--- a/src/util/disk.h
+++ b/src/util/disk.h
@@ -1,80 +1,80 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2009 Christian Grothoff (and other contributing authors) 3 (C) 2009 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 2, or (at your 7 by the Free Software Foundation; either version 2, or (at your
8 option) any later version. 8 option) any later version.
9 9
10 GNUnet is distributed in the hope that it will be useful, but 10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20
21/**
22 * @file util/disk.h
23 * @brief Internal DISK related helper functions
24 * @author Nils Durner
25 */
20 26
21/** 27#ifndef GNUNET_DISK_H_
22 * @file util/disk.h 28#define GNUNET_DISK_H_
23 * @brief Internal DISK related helper functions 29
24 * @author Nils Durner 30#include "gnunet_disk_lib.h"
25 */
26
27#ifndef GNUNET_DISK_H_
28#define GNUNET_DISK_H_
29 31
30#include "gnunet_disk_lib.h" 32/**
31 33 * Handle used to access files (and pipes).
32/** 34 */
33 * Handle used to access files (and pipes). 35struct GNUNET_DISK_FileHandle
34 */
35struct GNUNET_DISK_FileHandle
36{ 36{
37 37
38#ifdef MINGW 38#ifdef MINGW
39 /** 39 /**
40 * File handle under W32. 40 * File handle under W32.
41 */ 41 */
42 HANDLE h; 42 HANDLE h;
43 43
44 /** 44 /**
45 * Type 45 * Type
46 */ 46 */
47 enum {GNUNET_DISK_FILE, GNUNET_PIPE} type; 47 enum {GNUNET_DISK_FILE, GNUNET_PIPE} type;
48
49 /**
50 * Structure for overlapped reading (for pipes)
51 */
52 OVERLAPPED *oOverlapRead;
53
54 /**
55 * Structure for overlapped writing (for pipes)
56 */
57 OVERLAPPED *oOverlapWrite;
58#else
59 48
60 /** 49 /**
61 * File handle on other OSes. 50 * Structure for overlapped reading (for pipes)
62 */ 51 */
52 OVERLAPPED *oOverlapRead;
53
54 /**
55 * Structure for overlapped writing (for pipes)
56 */
57 OVERLAPPED *oOverlapWrite;
58#else
59
60 /**
61 * File handle on other OSes.
62 */
63 int fd; 63 int fd;
64 64
65#endif /* */ 65#endif /* */
66}; 66};
67 67
68/** 68/**
69 * Retrieve OS file handle 69 * Retrieve OS file handle
70 * 70 *
71 * @internal 71 * @internal
72 * @param fh GNUnet file descriptor 72 * @param fh GNUnet file descriptor
73 * @param dst destination buffer 73 * @param dst destination buffer
74 * @param dst_len length of dst 74 * @param dst_len length of dst
75 * @return GNUNET_OK on success, GNUNET_SYSERR otherwise 75 * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
76 */ 76 */
77int GNUNET_DISK_internal_file_handle_ (const struct GNUNET_DISK_FileHandle 77int GNUNET_DISK_internal_file_handle_ (const struct GNUNET_DISK_FileHandle
78 *fh, void *dst, size_t dst_len); 78 *fh, void *dst, size_t dst_len);
79 79
80#endif /* GNUNET_DISK_H_ */ 80#endif /* GNUNET_DISK_H_ */