websgetrequestusername.htm

来自「goahead是linux下的轻量级web服务器」· HTM 代码 · 共 74 行

HTM
74
字号
<html>
<head>
<title>websGetRequestUserName -- GoAhead WebServer API</title>
<link rel="stylesheet" href="../../style/doc.htm" type="text/css">
</head>

<body>
 
<TABLE border=0 width=100% cellspacing=0 cellpadding=0>
<TR>
	<TD class=title-left><b>websGetRequestUserName</b></TD>
    <TD class=title-center><b> GoAhead WebServer API</b></TD>
    <TD class=title-right><B> GoAhead EMF</B></TD>
</TR>
</TABLE>

<HR>
<h2>Synopsis</h2>
<p>Return the user name specified by the browser with the current request</p>

<h2>Prototype</h2>

<pre>
#include &quot;webs.h&quot;
   	       
char_t *<b>websGetRequestUserName</b>(webs_t wp);
</pre>

<h2>Parameters</h2>
<p><table width=90%>
    <TR>
        <TD width=40>wp
        <TD>Web server connection 
handle</TD>   </TR></table></p>

<h2>Description</h2>

<P>The websGetRequestUserName procedure returns the user 
name supplied by the browser. After a user has entered a username and 
password to access a secured web page, the browser will continue 
 to provide that username and password 
with every request for web documents under that point in the URL heirachy.

websGetRequestPassword and 
  <A href="websGetRequestUserName.htm">websGetRequestUsername</A> return
  decoded strings. 
  </P>

<P>&nbsp; 
    
  </P>

<P>
  Note: the <A href="websSecurityHandler.htm">websSecurityHandler</a> 
 currently
  ignores the user name.
  </P>

<h2>Return Value</h2>
<p>Pointer to a statically allocated string containing the decoded password. Do 
  not call <A href="../basic/public/bfree.htm">bfree</A>.</p>

<h2>Example</h2>
<pre>
path = websGetRequestUserName(wp);
</pre>
<h2>See Also</h2>
<p>
<A href="websGetRequestPassword.htm">websGetRequestPassword</A> 
</p>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?