Egon Elbre
fdd86d17ac
lib/uplinkc: use SliceHeader instead of [1<<30]
...
Conversions such as will be invalid with Go 1.14
(*[1<<30]byte)(unsafe.Pointer(data))
The recommended way is to use:
*(*[]byte)(unsafe.Pointer(
&reflect.SliceHeader{
Data: uintptr(unsafe.Pointer(data)),
Len: int(length),
Cap: int(length),
},
))
Also fixed a memory leak.
Change-Id: I1768b7b85505e6b57b49deb62a510474f1bf84c1
2019-12-13 16:49:41 +00:00
Michal Niewrzal
f56107fc61
uplinkc: add download_range function ( #3704 )
2019-12-10 03:51:56 -08:00
Egon Elbre
ee6c1cac8a
private: rename internal to private ( #3573 )
2019-11-14 21:46:15 +02:00
Egon Elbre
f3e803203b
lib/uplinkc: add clarifying comments to download_read ( #3525 )
2019-11-11 16:11:37 +02:00
Egon Elbre
d5667fbe35
lib/uplinkc: ensure it compiles on 32bit arch ( #2835 )
2019-08-26 16:12:26 +03:00
Egon Elbre
9eba5ac631
lib/uplink: remove Seek method ( #2768 )
2019-08-13 20:29:02 +03:00
Bryan White
8e60ba269f
libuplink upload/download err handling improvements ( #2725 )
2019-08-07 16:28:27 +02:00
Bryan White
e5379d4f67
libuplink: Add size to ObjectInfo
( #2714 )
2019-08-06 11:36:35 +02:00
Egon Elbre
4cc6972396
lib/uplinkc: avoid allocating too much on stack and nicer names ( #2659 )
2019-07-30 19:51:37 +03:00
Bryan White
6b40866ed8
Re-implement libstorj API (V2) using libuplink (V3) ( #2573 )
2019-07-30 13:40:05 +02:00
Jennifer Li Johnson
e285fe1997
Don't require encryption keys for project or bucket management ( #2291 )
2019-06-23 22:06:14 -04:00
Bryan White
9304817927
Uplink C bindings part 4 ( #2260 )
2019-06-21 20:44:00 +02:00
Bryan White
5f47b7028d
Uplink C bindings part 3 ( #2258 )
...
* add object upload and download
2019-06-21 08:24:06 -04:00