
C#
iteye_13419
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# SocketAsyncEventArgs 高性能Socket代码
[code="C#"]class Program { //This variable determines the number of //SocketAsyncEventArg objects put in the pool of objects for receive/send. //The value of this variable also affects...原创 2011-09-07 13:25:02 · 396 阅读 · 0 评论 -
获取IP地址
[code="java"]public String getIpAddrByRequest(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)...原创 2011-09-07 13:41:30 · 171 阅读 · 0 评论