Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
c35238e0
Commit
c35238e0
authored
24 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Jrt Hartroth's updates
parent
39b1801c
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
lib/Makefile.m32
+6
-3
6 additions, 3 deletions
lib/Makefile.m32
lib/easy.c
+1
-1
1 addition, 1 deletion
lib/easy.c
lib/url.c
+1
-1
1 addition, 1 deletion
lib/url.c
lib/urldata.h
+1
-1
1 addition, 1 deletion
lib/urldata.h
with
9 additions
and
6 deletions
lib/Makefile.m32
+
6
−
3
View file @
c35238e0
...
...
@@ -9,7 +9,7 @@
CC
=
gcc
AR
=
ar
RANLIB
=
ranlib
OPENSSL_PATH
=
../../openssl-0.9.
4
OPENSSL_PATH
=
../../openssl-0.9.
5a
########################################################
## Nothing more to do below this line!
...
...
@@ -31,12 +31,14 @@ urldata.h formdata.c hostip.h netrc.h stdcheaders.h formdata.h \
if2ip.c progress.c sendf.c sendf.h speedcheck.c speedcheck.h
\
ftp.c ftp.h getpass.c getpass.h version.c timeval.c timeval.h cookie.c
\
cookie.h escape.c escape.h getdate.c getdate.h dict.h dict.c http.c
\
http.h telnet.c telnet.h file.c file.h ldap.c ldap.h writeout.c writeout.h
http.h telnet.c telnet.h file.c file.h ldap.c ldap.h writeout.c writeout.h
\
highlevel.c strequal.c strequal.h easy.c
libcurl_a_OBJECTS
=
base64.o getenv.o mprintf.o url.o download.o
\
getpass.o ssluse.o hostip.o netrc.o formdata.o if2ip.o progress.o
\
sendf.o speedcheck.o ftp.o getpass.o version.o timeval.o
\
cookie.o escape.o getdate.o dict.o http.o telnet.o file.o ldap.o writeout.o
cookie.o escape.o getdate.o dict.o http.o telnet.o file.o ldap.o writeout.o
\
highlevel.o strequal.o easy.o
LIBRARIES
=
$(
libcurl_a_LIBRARIES
)
SOURCES
=
$(
libcurl_a_SOURCES
)
...
...
@@ -63,5 +65,6 @@ clean:
-
@erase
$(
libcurl_a_OBJECTS
)
distrib
:
clean
-
@erase
$(
libcurl_a_LIBRARIES
)
This diff is collapsed.
Click to expand it.
lib/easy.c
+
1
−
1
View file @
c35238e0
...
...
@@ -107,7 +107,7 @@ CURL *curl_easy_init(void)
if
(
res
!=
CURLE_OK
)
return
NULL
;
data
->
interf
ace
=
CURLI_EASY
;
/* mark it as an easy one */
data
->
interf
=
CURLI_EASY
;
/* mark it as an easy one */
return
data
;
}
...
...
This diff is collapsed.
Click to expand it.
lib/url.c
+
1
−
1
View file @
c35238e0
...
...
@@ -249,7 +249,7 @@ CURLcode curl_open(CURL **curl, char *url)
if
(
data
)
{
memset
(
data
,
0
,
sizeof
(
struct
UrlData
));
data
->
handle
=
STRUCT_OPEN
;
data
->
interf
ace
=
CURLI_NORMAL
;
/* normal interface by default */
data
->
interf
=
CURLI_NORMAL
;
/* normal interface by default */
/* We do some initial setup here, all those fields that can't be just 0 */
...
...
This diff is collapsed.
Click to expand it.
lib/urldata.h
+
1
−
1
View file @
c35238e0
...
...
@@ -306,7 +306,7 @@ typedef enum {
struct
UrlData
{
Handle
handle
;
/* struct identifier */
CurlInterface
interf
ace
;
CurlInterface
interf
;
/* created by WHAT interface? */
/*************** Global - specific items ************/
FILE
*
err
;
/* the stderr writes goes here */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment