我在Golang中有一个简单的HTTP服务器:
h := http.NewServeMux()
h.Handle("/somepath", MyHandler)
s := &http.Server{
Addr: "1234",
Handler: h,
}
s.ListenAndServe();
在调用者不是localhost的情况下删除连接的最佳方法是什么?目前我正在考虑检查底层连接信息并确保IP地址为127.0.0.1
,但这会在最终丢弃连接之前浪费大量资源(并运行一大堆Go代码)。理想情况下,我可以检测Golang服务器根据IP地址丢弃初始TCP SYN数据包,而不是根本不创建TCP连接(或显示此端口正在侦听)。
这里最干净的道路是什么?
答案 0 :(得分:10)
将VonC
的评论转换为答案。
您可以在@Override
public void onBindViewHolder(RecylerViewAdapter.ViewHolder holder, final int position) {
//some code....
if(isRead(position)){
holder.mView.setBackgroundColor(Color.RED);
}else
holder.mView.setBackgroundColor(Color.TRANSPARENT);
}
// readList is the positions that you stored in some array
// you can use the sqlite database or other logic whatever you prefer to store the positions
private void isRead(int position){
for(int i = 0;i<readList.length;i++){
if(readList[i]==position)
return true;
}
return false;
}
或host:port
中设置http.Server.Addr
来绑定主持人。
他们在内部使用http.ListenAndServe
。
来自net.Listen
:
对于TCP和UDP,laddr的语法是&#34; host:port&#34;,like &#34; 127.0.0.1:8080&#34 ;.如果省略host,如&#34;:8080&#34;,则侦听侦听 所有可用的接口,而不仅仅是给定的接口 主持人地址。