Lines Matching defs:address

107                                    char **address, struct hostname *host);
534 either the local address or host name parts. This is regardless of
539 char *address = NULL;
542 /* Parse the mailbox to verify into the local address and host name
545 &address, &host);
552 ((host.encalloc) || (!Curl_is_ASCII_name(address)) ||
558 address,
564 free(address);
607 either the local address or host name parts. This is regardless of
613 char *address = NULL;
616 /* Parse the FROM mailbox into the local address and host name parts,
619 &address, &host);
626 ((host.encalloc) || (!Curl_is_ASCII_name(address)) ||
630 from = aprintf("<%s@%s>", address, host.name);
637 from = aprintf("<%s>", address);
639 free(address);
651 char *address = NULL;
654 /* Parse the AUTH mailbox into the local address and host name parts,
657 &address, &host);
666 ((host.encalloc) || (!Curl_is_ASCII_name(address)) ||
671 auth = aprintf("<%s@%s>", address, host.name);
678 auth = aprintf("<%s>", address);
680 free(address);
739 based address then quickly scan through the recipient list and check if
788 char *address = NULL;
791 /* Parse the recipient mailbox into the local address and host name parts,
794 &address, &host);
801 address, host.name);
806 address);
809 free(address);
1753 * Parse the fully qualified mailbox address into a local address part and the
1760 * fqma [in] - The fully qualified mailbox address (which may or
1762 * address [in/out] - A new allocated buffer which holds the local
1763 * address part of the mailbox. This buffer must be
1781 * the address part with the host name being NULL.
1783 static CURLcode smtp_parse_address(const char *fqma, char **address,
1789 /* Duplicate the fully qualified email address so we can manipulate it,
1801 /* Extract the host name from the address (if we can) */
1815 /* Extract the local address from the mailbox */
1816 *address = dup;