[fix]修正UdpServer在接收广播时连续启动接收的错误,在StarAgent中,此时可能收到广播包,SocketFlags是Broadcast,需要清空,否则报错“参考的对象类型不支持尝试的操作”; 无需设置SocketOptionName.PacketInformation,在ReceiveMessageFromAsync时会自动设置,并且支持ipv6;
石头
编写于
2024-10-10 00:36:00
石头
提交于
2024-10-10 00:45:43
X
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>表单提交</title>
</head>
<body>
<h2>用户信息</h2>
<div>
<form action="/my" method="post" enctype="multipart/form-data">
<label for="name">用户名:</label>
<input type="text" name="name" placeholder="输入用户名" />
<label for="password">密码:</label>
<input type="password" name="password" />
<label for="avatar">头像:</label>
<input type="file" name="avatar" placeholder="上传头像" />
<label for="avatar2">头像:</label>
<input type="file" name="avatar2" placeholder="上传头像2" />
<input type="submit" value="保存" />
</form>
</div>
</body>
</html>
|