aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-12-30 22:50:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-12-30 22:50:42 +0000
commit6c6dc3f879718492c4902113815aac95cbbebfd8 (patch)
treef09e3e8e76b7ac5c7b9b3f748231df4840cb78b9 /lib/smtp.h
parenta1311e5a24e8163876d2d52a422b90d6ba037dd8 (diff)
modified to get the EHLO domain from the path part of the URL instead of the
user name
Diffstat (limited to 'lib/smtp.h')
-rw-r--r--lib/smtp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smtp.h b/lib/smtp.h
index 31de99e23..a1115e23a 100644
--- a/lib/smtp.h
+++ b/lib/smtp.h
@@ -45,9 +45,9 @@ typedef enum {
struct */
struct smtp_conn {
struct pingpong pp;
- char *domain; /* what to send in the EHLO */
- int eob; /* number of bytes of the EOB (End Of Body) that has been
- received thus far */
+ char *domain; /* what to send in the EHLO */
+ int eob; /* number of bytes of the EOB (End Of Body) that has been
+ received thus far */
smtpstate state; /* always use smtp.c:state() to change state! */
};