aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMNSData+zlib.h
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-02-06 18:30:17 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-02-06 18:30:17 +0000
commit754cbb4066c2682c8dec120f3d0550f84e326d3a (patch)
treebf15b6e6ee712a0e39b94e526da9db8308a0bb54 /Foundation/GTMNSData+zlib.h
parent2211ca05c8ff675d4c2981074311b58d309aaae3 (diff)
[Author: thomasvl]
Document that for 64bit, >32bit length is not supported. Remove TODOs as they don't make sense to do. R=dmaclach DELTA=16 (6 added, 0 deleted, 10 changed)
Diffstat (limited to 'Foundation/GTMNSData+zlib.h')
-rw-r--r--Foundation/GTMNSData+zlib.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Foundation/GTMNSData+zlib.h b/Foundation/GTMNSData+zlib.h
index df31d24..3ea7db8 100644
--- a/Foundation/GTMNSData+zlib.h
+++ b/Foundation/GTMNSData+zlib.h
@@ -6,9 +6,9 @@
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy
// of the License at
-//
+//
// http://www.apache.org/licenses/LICENSE-2.0
-//
+//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
@@ -22,6 +22,10 @@
/// Helpers for dealing w/ zlib inflate/deflate calls.
@interface NSData (GTMZLibAdditions)
+// NOTE: For 64bit, none of these apis handle input sizes >32bits, they will
+// return nil when given such data. To handle data of that size you really
+// should be streaming it rather then doing it all in memory.
+
/// Return an autoreleased NSData w/ the result of gzipping the bytes.
//
// Uses the default compression level.