Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

smtp-c.h/smtp-c.c

Prototype

 

Code Block
languagecpp
void  DNSc_Init (const  DNSc_CFG       *p_cfg,
                 const  DNSc_CFG_TASK  *p_task_cfg,
                        DNSc_ERR       *p_err);
Code Block
languagecpp
NET_SOCK_ID SMTPc_Connect (CPU_CHAR                *p_host_name,
						   CPU_INT16U               port,
 						   CPU_CHAR                *p_username,
						   CPU_CHAR                *p_pwd,
 						   NET_APP_SOCK_SECURE_CFG *p_secure_cfg,
 						   SMTPc_ERR               *p_err);

 

Arguments

p_host_name         Pointer to host name of the SMTP server to contact. Can be also an IP address.

...