Home | History | Annotate | Download | only in libxml2

Lines Matching refs:user

126     char *user;		/* user string */
148 static char *proxyUser = NULL; /* user for proxy authentication */
256 * @user: the proxy user name
258 * @type: the type of proxy 1 for using SITE, 2 for USER a@b
266 xmlNanoFTPProxy(const char *host, int port, const char *user,
282 if (user)
283 proxyUser = xmlMemStrdup(user);
339 if (uri->user != NULL) {
341 if ((cptr=strchr(uri->user, ':')) == NULL)
342 ctxt->user = xmlMemStrdup(uri->user);
344 ctxt->user = (char *)xmlStrndup((xmlChar *)uri->user,
345 (cptr - uri->user));
758 * Send the user authentication
768 if (ctxt->user == NULL)
769 snprintf(buf, sizeof(buf), "USER anonymous\r\n");
771 snprintf(buf, sizeof(buf), "USER %s\r\n", ctxt->user);
986 * +---+ USER +---+------------->+---+
1023 snprintf(buf, sizeof(buf), "USER %s\r\n", proxyUser);
1111 /* USER user@host command */
1112 if (ctxt->user == NULL)
1113 snprintf(buf, sizeof(buf), "USER anonymous@%s\r\n",
1116 snprintf(buf, sizeof(buf), "USER %s@%s\r\n",
1117 ctxt->user, ctxt->hostname);
1581 * @callback: the user callback
1582 * @userData: the user callback data
1707 * @callback: the user callback
1708 * @userData: the user callback data
1882 * @callback: the user callback
1883 * @userData: the user callback data