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
73fae581
Commit
73fae581
authored
12 years ago
by
Steve Holme
Browse files
Options
Downloads
Patches
Plain Diff
email: Updated comment regarding ssldone usage
Updated the ssldone comment as multi mode is always used internally now.
parent
44cf225f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/imap.h
+1
-2
1 addition, 2 deletions
lib/imap.h
lib/pop3.h
+1
-2
1 addition, 2 deletions
lib/pop3.h
lib/smtp.h
+2
-4
2 additions, 4 deletions
lib/smtp.h
with
4 additions
and
8 deletions
lib/imap.h
+
1
−
2
View file @
73fae581
...
...
@@ -61,8 +61,7 @@ struct imap_conn {
imapstate
state
;
/* Always use imap.c:state() to change state! */
int
cmdid
;
/* Next command ID */
const
char
*
idstr
;
/* String based response ID to wait for */
bool
ssldone
;
/* Is connect() over SSL done? Only relevant in
multi mode */
bool
ssldone
;
/* Is connect() over SSL done? */
};
extern
const
struct
Curl_handler
Curl_handler_imap
;
...
...
This diff is collapsed.
Click to expand it.
lib/pop3.h
+
1
−
2
View file @
73fae581
...
...
@@ -65,8 +65,7 @@ struct pop3_conn {
unsigned
int
authused
;
/* SASL auth mechanism used for the connection */
char
*
apoptimestamp
;
/* APOP timestamp from the server greeting */
pop3state
state
;
/* Always use pop3.c:state() to change state! */
bool
ssldone
;
/* Is connect() over SSL done? Only relevant in
multi mode */
bool
ssldone
;
/* Is connect() over SSL done? */
};
extern
const
struct
Curl_handler
Curl_handler_pop3
;
...
...
This diff is collapsed.
Click to expand it.
lib/smtp.h
+
2
−
4
View file @
73fae581
...
...
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 2009 - 201
2
, Daniel Stenberg, <daniel@haxx.se>, et al.
* Copyright (C) 2009 - 201
3
, 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
...
...
@@ -64,8 +64,7 @@ struct smtp_conn {
unsigned
int
authused
;
/* Auth mechanism used for the connection */
smtpstate
state
;
/* Always use smtp.c:state() to change state! */
struct
curl_slist
*
rcpt
;
/* Recipient list */
bool
ssldone
;
/* Is connect() over SSL done? Only relevant in
multi mode */
bool
ssldone
;
/* Is connect() over SSL done? */
bool
size_supported
;
/* If server supports SIZE extension according to
RFC 1870 */
};
...
...
@@ -85,4 +84,3 @@ extern const struct Curl_handler Curl_handler_smtps;
CURLcode
Curl_smtp_escape_eob
(
struct
connectdata
*
conn
,
ssize_t
nread
);
#endif
/* HEADER_CURL_SMTP_H */
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