mirror of
https://github.com/moparisthebest/curl
synced 2024-11-12 04:25:08 -05:00
4a5aa6682d
This reverts renaming and usage of lib/*.h header files done
28-12-2012, reverting 2 commits:
f871de0... build: make use of 76 lib/*.h renamed files
ffd8e12... build: rename 76 lib/*.h files
This also reverts removal of redundant include guard (redundant thanks
to changes in above commits) done 2-12-2013, reverting 1 commit:
c087374... curl_setup.h: remove redundant include guard
This also reverts renaming and usage of lib/*.c source files done
3-12-2013, reverting 3 commits:
13606bb... build: make use of 93 lib/*.c renamed files
5b6e792... build: rename 93 lib/*.c files
7d83dff... build: commit 13606bbfde
follow-up 1
Start of related discussion thread:
http://curl.haxx.se/mail/lib-2013-01/0012.html
Asking for confirmation on pushing this revertion commit:
http://curl.haxx.se/mail/lib-2013-01/0048.html
Confirmation summary:
http://curl.haxx.se/mail/lib-2013-01/0079.html
NOTICE: The list of 2 files that have been modified by other
intermixed commits, while renamed, and also by at least one
of the 6 commits this one reverts follows below. These 2 files
will exhibit a hole in history unless git's '--follow' option
is used when viewing logs.
lib/curl_imap.h
lib/curl_smtp.h
132 lines
4.1 KiB
C
132 lines
4.1 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
#include "tool_setup.h"
|
|
|
|
#define ENABLE_CURLX_PRINTF
|
|
/* use our own printf() functions */
|
|
#include "curlx.h"
|
|
|
|
#include "tool_cfgable.h"
|
|
#include "tool_cb_see.h"
|
|
|
|
#include "memdebug.h" /* keep this as LAST include */
|
|
|
|
/* OUR_MAX_SEEK_L has 'long' data type, OUR_MAX_SEEK_O has 'curl_off_t,
|
|
both represent the same value. Maximum offset used here when we lseek
|
|
using a 'long' data type offset */
|
|
|
|
#define OUR_MAX_SEEK_L 2147483647L - 1L
|
|
#define OUR_MAX_SEEK_O CURL_OFF_T_C(0x7FFFFFFF) - CURL_OFF_T_C(0x1)
|
|
|
|
/*
|
|
** callback for CURLOPT_SEEKFUNCTION
|
|
**
|
|
** Notice that this is not supposed to return the resulting offset. This
|
|
** shall only return CURL_SEEKFUNC_* return codes.
|
|
*/
|
|
|
|
int tool_seek_cb(void *userdata, curl_off_t offset, int whence)
|
|
{
|
|
struct InStruct *in = userdata;
|
|
|
|
#if(CURL_SIZEOF_CURL_OFF_T > SIZEOF_OFF_T) && !defined(USE_WIN32_LARGE_FILES)
|
|
|
|
/* The offset check following here is only interesting if curl_off_t is
|
|
larger than off_t and we are not using the WIN32 large file support
|
|
macros that provide the support to do 64bit seeks correctly */
|
|
|
|
if(offset > OUR_MAX_SEEK_O) {
|
|
/* Some precaution code to work around problems with different data sizes
|
|
to allow seeking >32bit even if off_t is 32bit. Should be very rare and
|
|
is really valid on weirdo-systems. */
|
|
curl_off_t left = offset;
|
|
|
|
if(whence != SEEK_SET)
|
|
/* this code path doesn't support other types */
|
|
return CURL_SEEKFUNC_FAIL;
|
|
|
|
if(LSEEK_ERROR == lseek(in->fd, 0, SEEK_SET))
|
|
/* couldn't rewind to beginning */
|
|
return CURL_SEEKFUNC_FAIL;
|
|
|
|
while(left) {
|
|
long step = (left > OUR_MAX_SEEK_O) ? OUR_MAX_SEEK_L : (long)left;
|
|
if(LSEEK_ERROR == lseek(in->fd, step, SEEK_CUR))
|
|
/* couldn't seek forwards the desired amount */
|
|
return CURL_SEEKFUNC_FAIL;
|
|
left -= step;
|
|
}
|
|
return CURL_SEEKFUNC_OK;
|
|
}
|
|
#endif
|
|
|
|
if(LSEEK_ERROR == lseek(in->fd, offset, whence))
|
|
/* couldn't rewind, the reason is in errno but errno is just not portable
|
|
enough and we don't actually care that much why we failed. We'll let
|
|
libcurl know that it may try other means if it wants to. */
|
|
return CURL_SEEKFUNC_CANTSEEK;
|
|
|
|
return CURL_SEEKFUNC_OK;
|
|
}
|
|
|
|
#if defined(WIN32) && !defined(__MINGW64__)
|
|
|
|
#ifdef __BORLANDC__
|
|
/* 64-bit lseek-like function unavailable */
|
|
# define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
|
|
#endif
|
|
|
|
#ifdef __POCC__
|
|
# if(__POCC__ < 450)
|
|
/* 64-bit lseek-like function unavailable */
|
|
# define _lseeki64(hnd,ofs,whence) _lseek(hnd,ofs,whence)
|
|
# else
|
|
# define _lseeki64(hnd,ofs,whence) _lseek64(hnd,ofs,whence)
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef _WIN32_WCE
|
|
/* 64-bit lseek-like function unavailable */
|
|
# undef _lseeki64
|
|
# define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
|
|
# undef _get_osfhandle
|
|
# define _get_osfhandle(fd) (fd)
|
|
#endif
|
|
|
|
/*
|
|
* Truncate a file handle at a 64-bit position 'where'.
|
|
*/
|
|
|
|
int tool_ftruncate64(int fd, curl_off_t where)
|
|
{
|
|
if(_lseeki64(fd, where, SEEK_SET) < 0)
|
|
return -1;
|
|
|
|
if(!SetEndOfFile((HANDLE)_get_osfhandle(fd)))
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif /* WIN32 && ! __MINGW64__ */
|
|
|