- Dec 01, 2014
-
-
Guenter Knauf authored
-
- Nov 30, 2014
-
-
Peter Wu authored
Instead of depending the socket domain type on use_ipv6, specify the domain type (AF_INET / AF_INET6) as variable. An enum is used here with switch to avoid compiler warnings in connect_to, complaining that rc is possibly undefined (which is not possible as socket_domain is always set). Besides abstracting the socket type, make the debugging messages be independent on IP (introduce location_str which points to "port XXXXX"). Rename "ipv_inuse" to "socket_type" and tighten the scope (main). Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
This patch prepares for adding UNIX domain sockets support. TCP_NODELAY and TCP_KEEPALIVE are specific to TCP/IP sockets, so do not apply these to other socket types. bindlocal only works for IP sockets (independent of TCP/UDP), so filter that out too for other types. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Daniel Stenberg authored
This fixes warnings about conversions to int
-
Steve Holme authored
-
Bill Nagel authored
This patch updates the documentation for the SMB/CIFS protocol.
-
Steve Holme authored
As local files could be accessed through \\localhost\c$.
-
Bill Nagel authored
This patch enables SMB/CIFS support in the curl command-line tool.
-
Steve Holme authored
smb.c:398: warning: comparison of integers of different signs: 'ssize_t' (aka 'long') and 'unsigned long' smb.c:443: warning: comparison of integers of different signs: 'ssize_t' (aka 'long') and 'unsigned long'
-
Steve Holme authored
As local files could be accessed through \\localhost\c$.
-
Bill Nagel authored
This patch enables SMB/CIFS support in libcurl.
-
Steve Holme authored
smb.c:322: warning: conversion to 'short unsigned int' from 'unsigned int' may alter its value smb.c:323: warning: conversion to 'short unsigned int' from 'unsigned int' may alter its value smb.c:482: warning: conversion to 'short unsigned int' from 'int' may alter its value smb.c:521: warning: conversion to 'unsigned int' from 'curl_off_t' may alter its value smb.c:549: warning: conversion to 'unsigned int' from 'curl_off_t' may alter its value smb.c:550: warning: conversion to 'short unsigned int' from 'int' may alter its value
-
Steve Holme authored
smb.c:489: warning: declaration of 'close' shadows a global declaration smb.c:511: warning: declaration of 'read' shadows a global declaration smb.c:528: warning: declaration of 'write' shadows a global declaration
-
Steve Holme authored
smb.c:212: warning: unused parameter 'done' smb.c:380: warning: ISO C does not allow extra ';' outside of a function smb.c:812: warning: unused parameter 'premature' smb.c:822: warning: unused parameter 'dead'
-
Steve Holme authored
smb.c:311: warning: conversion from 'unsigned __int64' to 'u_short', possible loss of data smb.c:425: warning: conversion from '__int64' to 'unsigned short', possible loss of data smb.c:452: warning: conversion from '__int64' to 'unsigned short', possible loss of data
-
Steve Holme authored
smb.c:162: error: comma at end of enumerator list smb.c:469: warning: conversion from 'size_t' to 'unsigned short', possible loss of data smb.c:517: warning: conversion from 'curl_off_t' to 'unsigned int', possible loss of data smb.c:545: warning: conversion from 'curl_off_t' to 'unsigned int', possible loss of data
-
Bill Nagel authored
Initial implementation of the SMB/CIFS protocol.
-
Bill Nagel authored
Added the SMB and SMBS handler interface structures and associated functions required for SMB/CIFS operation.
-
Steve Holme authored
Prefer ! rather than NULL in if statements, added comments and updated function spacing, argument spacing and line spacing to be more readble.
-
Steve Holme authored
If the scratch buffer already existed when the CRLF conversion was performed then the buffer pointer would be checked twice for NULL. This second check is only necessary if the call to malloc() was performed by the first check.
-
Steve Holme authored
Whilst I had moved the dot stuffing code from being performed before CRLF conversion takes place to after it, in commit 4bd860a0, I had moved it outside the 'when something read' block of code when meant it could perform the dot stuffing twice on partial send if nread happened to contain the right values. It also meant the function could potentially read past the end of buffer. This was highlighted by the following warning: warning: `nread' might be used uninitialized in this function
-
- Nov 29, 2014
-
-
Daniel Stenberg authored
smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic]
-
Steve Holme authored
-
Bill Nagel authored
Added the necessary protocol and port definitions in order to support SMB/CIFS.
-
Bill Nagel authored
Added the internal definitions and structures necessary for SMB/CIFS support.
-
Bill Nagel authored
Added the connection structure that will be required in urldata.h for SMB/CIFS based connections.
-
Bill Nagel authored
Added the initial source files and updated the relevant project files in order to support SMB/CIFS.
-
Bill Nagel authored
Added --enable-smb and --disable-smb configuration options for the upcoming SMB/CIFS protocol support.
-
- Nov 28, 2014
-
-
Peter Wu authored
Commit curl-7_23_1-143-g8218064 changed the parameter of responsive_http_server to accept types other than IPv6 (converting from a boolean to a string), but only considered the lower-case "ipv6" and not the "IPv6" variant. This caused all servers to start in IPv4 mode instead. This patch converts the remaining cases to "ipv6". While not strictly necessary for the run*server variants, these got also converted for consistency and to prevent future errors. Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
Peter Wu authored
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
-
- Nov 27, 2014
-
-
Steve Holme authored
warning: unused variable 'data' warning: variable 'addcookies' set but not used ...and some very minor coding style policing.
-
Steve Holme authored
-
- Nov 26, 2014
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
...and some comment typos!
-
Steve Holme authored
Added support for the automatic conversion of Unix newlines to CRLF during mail uploads. Feature: http://curl.haxx.se/bug/view.cgi?id=1456
-
- Nov 25, 2014
-
-
Steve Holme authored
-
Daniel Stenberg authored
and some minor edits
-
Daniel Stenberg authored
refer to functions with the man page section properly
-
Daniel Stenberg authored
-