ObjFW  Diff

Differences From Artifact [167084236d]:

  • File utils/ofzip/OFZIP.h — part of check-in [7e5c81e186] at 2018-01-03 19:49:46 on branch trunk — Update copyright notice (user: js size: 1242)

To Artifact [922682e77a]:

  • File utils/ofzip/OFZIP.h — part of check-in [f29afa4a27] at 2018-05-21 12:10:12 on branch trunk — ofzip: Refactor safe path checking (user: js size: 1353)

16
17
18
19
20
21
22


23
24
25
26
27
28
29
 */

#import "OFObject.h"
#import "OFString.h"

#import "Archive.h"



#ifndef S_IRWXG
# define S_IRWXG 0
#endif
#ifndef S_IRWXO
# define S_IRWXO 0
#endif








>
>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 */

#import "OFObject.h"
#import "OFString.h"

#import "Archive.h"

OF_ASSUME_NONNULL_BEGIN

#ifndef S_IRWXG
# define S_IRWXG 0
#endif
#ifndef S_IRWXO
# define S_IRWXO 0
#endif

40
41
42
43
44
45
46

47


			       type: (OFString *)type
			       mode: (char)mode;
- (bool)shouldExtractFile: (OFString *)fileName
	      outFileName: (OFString *)outFileName;
- (ssize_t)copyBlockFromStream: (OFStream *)input
		      toStream: (OFStream *)output
		      fileName: (OFString *)fileName;

@end









>

>
>
42
43
44
45
46
47
48
49
50
51
52
			       type: (OFString *)type
			       mode: (char)mode;
- (bool)shouldExtractFile: (OFString *)fileName
	      outFileName: (OFString *)outFileName;
- (ssize_t)copyBlockFromStream: (OFStream *)input
		      toStream: (OFStream *)output
		      fileName: (OFString *)fileName;
- (nullable OFString *)safeLocalPathForPath: (OFString *)path;
@end

OF_ASSUME_NONNULL_END