Home | History | Annotate | Download | only in libxml2

Lines Matching defs:user

127     char *user;		/* user string */
149 static char *proxyUser = NULL; /* user for proxy authentication */
257 * @user: the proxy user name
259 * @type: the type of proxy 1 for using SITE, 2 for USER a@b
267 xmlNanoFTPProxy(const char *host, int port, const char *user,
283 if (user)
284 proxyUser = xmlMemStrdup(user);
340 if (uri->user != NULL) {
342 if ((cptr=strchr(uri->user, ':')) == NULL)
343 ctxt->user = xmlMemStrdup(uri->user);
345 ctxt->user = (char *)xmlStrndup((xmlChar *)uri->user,
346 (cptr - uri->user));
759 * Send the user authentication
769 if (ctxt->user == NULL)
770 snprintf(buf, sizeof(buf), "USER anonymous\r\n");
772 snprintf(buf, sizeof(buf), "USER %s\r\n", ctxt->user);
987 * +---+ USER +---+------------->+---+
1024 snprintf(buf, sizeof(buf), "USER %s\r\n", proxyUser);
1112 /* USER user@host command */
1113 if (ctxt->user == NULL)
1114 snprintf(buf, sizeof(buf), "USER anonymous@%s\r\n",
1117 snprintf(buf, sizeof(buf), "USER %s@%s\r\n",
1118 ctxt->user, ctxt->hostname);
1582 * @callback: the user callback
1583 * @userData: the user callback data
1708 * @callback: the user callback
1709 * @userData: the user callback data
1883 * @callback: the user callback
1884 * @userData: the user callback data