亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? changelog

?? stm32+ucos-ii
??
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    connections, such present in patch #5959.

  2007-05-23 Fr閐閞ic Bernon
  * api.h, api_lib.c, api_msg.c, sockets.c: group the different NETCONN_UDPxxx
    code in only one part...

  2007-05-18 Simon Goldschmidt
  * opt.h, memp.h, memp.c: Added option MEMP_OVERFLOW_CHECK to check for memp
    elements to overflow. This is achieved by adding some bytes before and after
    each pool element (increasing their size, of course), filling them with a
    prominent value and checking them on freeing the element.
    Set it to 2 to also check every element in every pool each time memp_malloc()
    or memp_free() is called (slower but more helpful).

  2007-05-10 Simon Goldschmidt
  * opt.h, memp.h, memp.c, pbuf.c (see task #6831): use a new memp pool for
    PBUF_POOL pbufs instead of the old pool implementation in pbuf.c to reduce
    code size.

  2007-05-11 Fr閐閞ic Bernon
  * sockets.c, api_lib.c, api_msg.h, api_msg.c, netifapi.h, netifapi.c, tcpip.c:
    Include a function pointer instead of a table index in the message to reduce
    footprint. Disable some part of lwip_send and lwip_sendto if some options are
    not set (LWIP_TCP, LWIP_UDP, LWIP_RAW).

  2007-05-10 Simon Goldschmidt
  * *.h (except netif/ppp/*.h): Included patch #5448: include '#ifdef __cplusplus
    \ extern "C" {' in all header files. Now you can write your application using
    the lwIP stack in C++ and simply #include the core files. Note I have left
    out the netif/ppp/*h header files for now, since I don't know which files are
    included by applications and which are for internal use only.

  2007-05-09 Simon Goldschmidt
  * opt.h, *.c/*.h: Included patch #5920: Create define to override C-library
    memcpy. 2 Defines are created: MEMCPY() for normal memcpy, SMEMCPY() for
    situations where some compilers might inline the copy and save a function
    call. Also replaced all calls to memcpy() with calls to (S)MEMCPY().

  2007-05-08 Simon Goldschmidt
  * mem.h: If MEM_LIBC_MALLOC==1, allow the defines (e.g. mem_malloc() -> malloc())
    to be overriden in case the C-library malloc implementation is not protected
    against concurrent access.

  2007-05-04 Simon Goldschmidt (Atte Kojo)
  * etharp.c: Introduced fast one-entry-cache to speed up ARP lookup when sending
    multiple packets to the same host.

  2007-05-04 Fr閐閞ic Bernon, Jonathan Larmour
  * sockets.c, api.h, api_lib.c, api_msg.h, api_msg.c: Fix bug #19162 "lwip_sento: a possible
    to corrupt remote addr/port connection state". Reduce problems "not enought memory" with
    netbuf (if we receive lot of datagrams). Improve lwip_sendto (only one exchange between
    sockets api and api_msg which run in tcpip_thread context). Add netconn_sento function.
    Warning, if you directly access to "fromaddr" & "fromport" field from netbuf struct,
    these fields are now renamed "addr" & "port".

  2007-04-11 Jonathan Larmour
  * sys.h, api_lib.c: Provide new sys_mbox_tryfetch function. Require ports to provide new
    sys_arch_mbox_tryfetch function to get a message if one is there, otherwise return
    with SYS_MBOX_EMPTY. sys_arch_mbox_tryfetch can be implemented as a function-like macro
    by the port in sys_arch.h if desired.

  2007-04-06 Fr閐閞ic Bernon, Simon Goldschmidt
  * opt.h, tcpip.h, tcpip.c, netifapi.h, netifapi.c: New configuration option LWIP_NETIF_API
    allow to use thread-safe functions to add/remove netif in list, and to start/stop dhcp
    clients, using new functions from netifapi.h. Disable as default (no port change to do).

  2007-04-05 Fr閐閞ic Bernon
  * sockets.c: remplace ENOBUFS errors on alloc_socket by ENFILE to be more BSD compliant.

  2007-04-04 Simon Goldschmidt
  * arch.h, api_msg.c, dhcp.c, msg_in.c, sockets.c: Introduced #define LWIP_UNUSED_ARG(x)
    use this for and architecture-independent form to tell the compiler you intentionally
    are not using this variable. Can be overriden in cc.h.

  2007-03-28 Fr閐閞ic Bernon
  * opt.h, netif.h, dhcp.h, dhcp.c: New configuration option LWIP_NETIF_HOSTNAME allow to
    define a hostname in netif struct (this is just a pointer, so, you can use a hardcoded
    string, point on one of your's ethernetif field, or alloc a string you will free yourself).
    It will be used by DHCP to register a client hostname, but can also be use when you call
    snmp_set_sysname.

  2007-03-28 Fr閐閞ic Bernon
  * netif.h, netif.c: A new NETIF_FLAG_ETHARP flag is defined in netif.h, to allow to 
    initialize a network interface's flag with. It tell this interface is an ethernet
    device, and we can use ARP with it to do a "gratuitous ARP" (RFC 3220 "IP Mobility
    Support for IPv4" section 4.6) when interface is "up" with netif_set_up().

  2007-03-26 Fr閐閞ic Bernon, Jonathan Larmour
  * opt.h, tcpip.c: New configuration option LWIP_ARP allow to disable ARP init at build
    time if you only use PPP or SLIP. The default is enable. Note we don't have to call 
    etharp_init in your port's initilization sequence if you use tcpip.c, because this call
    is done in tcpip_init function.

  2007-03-22 Fr閐閞ic Bernon
  * stats.h, stats.c, msg_in.c: Stats counters can be change to u32_t if necessary with the
    new option LWIP_STATS_LARGE. If you need this option, define LWIP_STATS_LARGE to 1 in
    your lwipopts.h. More, unused counters are not defined in the stats structs, and not 
    display by stats_display(). Note that some options (SYS_STATS and RAW_STATS) are defined
    but never used. Fix msg_in.c with the correct #if test for a stat display.

  2007-03-21 Kieran Mansley
  * netif.c, netif.h: Apply patch#4197 with some changes (originator: rireland@hmgsl.com). 
    Provides callback on netif up/down state change.

  2007-03-11 Fr閐閞ic Bernon, Mace Gael, Steve Reynolds
  * sockets.h, sockets.c, api.h, api_lib.c, api_msg.h, api_msg.c, igmp.h, igmp.c,
    ip.c, netif.h, tcpip.c, opt.h:
    New configuration option LWIP_IGMP to enable IGMP processing. Based on only one 
    filter per all network interfaces. Declare a new function in netif to enable to
    control the MAC filter (to reduce lwIP traffic processing).

  2007-03-11 Fr閐閞ic Bernon
  * tcp.h, tcp.c, sockets.c, tcp_out.c, tcp_in.c, opt.h: Keepalive values can
    be configured at run time with LWIP_TCP_KEEPALIVE, but don't change this
    unless you know what you're doing (default are RFC1122 compliant). Note
    that TCP_KEEPIDLE and TCP_KEEPINTVL have to be set in seconds.

  2007-03-08 Fr閐閞ic Bernon
  * tcp.h: Keepalive values can be configured at compile time, but don't change
    this unless you know what you're doing (default are RFC1122 compliant).

  2007-03-08 Fr閐閞ic Bernon
  * sockets.c, api.h, api_lib.c, tcpip.c, sys.h, sys.c, err.c, opt.h:
    Implement LWIP_SO_RCVTIMEO configuration option to enable/disable SO_RCVTIMEO
    on UDP sockets/netconn.

  2007-03-08 Simon Goldschmidt
  * snmp_msg.h, msg_in.c: SNMP UDP ports can be configured at compile time.

  2007-03-06 Fr閐閞ic Bernon
  * api.h, api_lib.c, sockets.h, sockets.c, tcpip.c, sys.h, sys.c, err.h: 
    Implement SO_RCVTIMEO on UDP sockets/netconn.

  2007-02-28 Kieran Mansley (based on patch from Simon Goldschmidt)
  * api_lib.c, tcpip.c, memp.c, memp.h: make API msg structs allocated
    on the stack and remove the API msg type from memp

  2007-02-26 Jonathan Larmour (based on patch from Simon Goldschmidt)
  * sockets.h, sockets.c: Move socket initialization to new
    lwip_socket_init() function.
    NOTE: this changes the API with ports. Ports will have to be
    updated to call lwip_socket_init() now.

  2007-02-26 Jonathan Larmour (based on patch from Simon Goldschmidt)
  * api_lib.c: Use memcpy in netbuf_copy_partial.


  ++ Bug fixes:

  2008-03-17 Fr閐閞ic Bernon, Ed Kerekes
  * igmp.h, igmp.c: Fix bug #22613 "IGMP iphdr problem" (could have
    some problems to fill the IP header on some targets, use now the
    ip.h macros to do it).

  2008-03-13 Fr閐閞ic Bernon
  * sockets.c: Fix bug #22435 "lwip_recvfrom with TCP break;". Using
    (lwip_)recvfrom with valid "from" and "fromlen" parameters, on a
    TCP connection caused a crash. Note that using (lwip_)recvfrom
    like this is a bit slow and that using (lwip)getpeername is the
    good lwip way to do it (so, using recv is faster on tcp sockets).

  2008-03-12 Fr閐閞ic Bernon, Jonathan Larmour
  * api_msg.c, contrib/apps/ping.c: Fix bug #22530 "api_msg.c's
    recv_raw() does not consume data", and the ping sample (with
    LWIP_SOCKET=1, the code did the wrong supposition that lwip_recvfrom
    returned the IP payload, without the IP header).

  2008-03-04 Jonathan Larmour
  * mem.c, stats.c, mem.h: apply patch #6414 to avoid compiler errors
  and/or warnings on some systems where mem_size_t and size_t differ.
  * pbuf.c, ppp.c: Fix warnings on some systems with mem_malloc.

  2008-03-04 Kieran Mansley (contributions by others) 
  * Numerous small compiler error/warning fixes from contributions to
    mailing list after 1.3.0 release candidate made.

  2008-01-25 Cui hengbin (integrated by Fr閐閞ic Bernon)
  * dns.c: Fix bug #22108 "DNS problem" caused by unaligned structures.

  2008-01-15 Kieran Mansley
  * tcp_out.c: BUG20511.  Modify persist timer to start when we are
    prevented from sending by a small send window, not just a zero
    send window.

  2008-01-09 Jonathan Larmour
  * opt.h, ip.c: Rename IP_OPTIONS define to IP_OPTIONS_ALLOWED to avoid
    conflict with Linux system headers.

  2008-01-06 Jonathan Larmour
  * dhcp.c: fix bug #19927: "DHCP NACK problem" by clearing any existing set IP
    address entirely on receiving a DHCPNAK, and restarting discovery.

  2007-12-21 Simon Goldschmidt
  * sys.h, api_lib.c, api_msg.c, sockets.c: fix bug #21698: "netconn->recv_avail
    is not protected" by using new macros for interlocked access to modify/test
    netconn->recv_avail.

  2007-12-20 Kieran Mansley (based on patch from Oleg Tyshev)
  * tcp_in.c: fix bug# 21535 (nrtx not reset correctly in SYN_SENT state)

  2007-12-20 Kieran Mansley (based on patch from Per-Henrik Lundbolm)
  * tcp.c, tcp_in.c, tcp_out.c, tcp.h: fix bug #20199 (better handling
    of silly window avoidance and prevent lwIP from shrinking the window)

  2007-12-04 Simon Goldschmidt
  * tcp.c, tcp_in.c: fix bug #21699 (segment leak in ooseq processing when last
    data packet was lost): add assert that all segment lists are empty in
    tcp_pcb_remove before setting pcb to CLOSED state; don't directly set CLOSED
    state from LAST_ACK in tcp_process

  2007-12-02 Simon Goldschmidt
  * sockets.h: fix bug #21654: exclude definition of struct timeval from #ifndef FD_SET
    If including <sys/time.h> for system-struct timeval, LWIP_TIMEVAL_PRIVATE now
    has to be set to 0 in lwipopts.h

  2007-12-02 Simon Goldschmidt
  * api_msg.c, api_lib.c: fix bug #21656 (recvmbox problem in netconn API): always
    allocate a recvmbox in netconn_new_with_proto_and_callback. For a tcp-listen
    netconn, this recvmbox is later freed and a new mbox is allocated for acceptmbox.
    This is a fix for thread-safety and allocates all items needed for a netconn
    when the netconn is created.

  2007-11-30 Simon Goldschmidt
  * udp.c: first attempt to fix bug #21655 (DHCP doesn't work reliably with multiple
    netifs): if LWIP_DHCP is enabled, UDP packets to DHCP_CLIENT_PORT are passed
    to netif->dhcp->pcb only (if that exists) and not to any other pcb for the same
    port (only solution to let UDP pcbs 'bind' to a netif instead of an IP address)

  2007-11-27 Simon Goldschmidt
  * ip.c: fixed bug #21643 (udp_send/raw_send don't fail if netif is down) by
    letting ip_route only use netifs that are up.

  2007-11-27 Simon Goldschmidt
  * err.h, api_lib.c, api_msg.c, sockets.c: Changed error handling: ERR_MEM, ERR_BUF
    and ERR_RTE are seen as non-fatal, all other errors are fatal. netconns and
    sockets block most operations once they have seen a fatal error.

  2007-11-27 Simon Goldschmidt
  * udp.h, udp.c, dhcp.c: Implemented new function udp_sendto_if which takes the
    netif to send as an argument (to be able to send on netifs that are down).

  2007-11-26 Simon Goldschmidt
  * tcp_in.c: Fixed bug #21582: pcb->acked accounting can be wrong when ACKs
    arrive out-of-order

  2007-11-21 Simon Goldschmidt
  * tcp.h, tcp_out.c, api_msg.c: Fixed bug #20287: tcp_output_nagle sends too early
    Fixed the nagle algorithm; nagle now also works for all raw API applications
    and has to be explicitly disabled with 'tcp_pcb->flags |= TF_NODELAY'

  2007-11-12 Fr閐閞ic Bernon
  * sockets.c, api.h, api_lib.c, api_msg.h, api_msg.c: Fixed bug #20900. Now, most
    of the netconn_peer and netconn_addr processing is done inside tcpip_thread
    context in do_getaddr.

  2007-11-10 Simon Goldschmidt
  * etharp.c: Fixed bug: assert fired when MEMP_ARP_QUEUE was empty (which can
    happen any time). Now the packet simply isn't enqueued when out of memory.

  2007-11-01 Simon Goldschmidt
  * tcp.c, tcp_in.c: Fixed bug #21494: The send mss (pcb->mss) is set to 536 (or
    TCP_MSS if that is smaller) as long as no MSS option is received from the
    remote host.

  2007-11-01 Simon Goldschmidt
  * tcp.h, tcp.c, tcp_in.c: Fixed bug #21491: The MSS option sent (with SYN)
    is now based on TCP_MSS instead of pcb->mss (on passive open now effectively
    sending our configured TCP_MSS instead of the one received).

  2007-11-01 Simon Goldschmidt
  * tcp_in.c: Fixed bug #21181: On active open, the initial congestion window was
    calculated based on the configured TCP_MSS, not on the MSS option received
    with SYN+ACK.

  2007-10-09 Simon Goldschmidt
  * udp.c, inet.c, inet.h: Fixed UDPLite: send: Checksum was always generated too

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩亚州综合| 中文字幕国产一区| 成人午夜视频福利| 亚洲图片一区二区| 久久婷婷一区二区三区| 欧美无砖砖区免费| 国产成人自拍网| 亚洲一区二区三区四区的| 久久久久久麻豆| 欧美狂野另类xxxxoooo| 成人黄色777网| 极品尤物av久久免费看| 亚洲一区二区影院| 国产精品免费视频观看| 日韩欧美电影一区| 精品视频1区2区3区| 成人av在线资源| 经典三级在线一区| 污片在线观看一区二区| 国产精品成人网| 国产三级欧美三级| 日韩视频免费观看高清完整版在线观看 | 91精品视频网| 色域天天综合网| av在线不卡免费看| 韩国视频一区二区| 日本在线不卡视频| 亚洲一区在线观看免费| 国产精品国产三级国产aⅴ入口 | 欧美一区二区视频在线观看2022| 99精品在线观看视频| 国产白丝网站精品污在线入口| 久久精品理论片| 蜜桃久久精品一区二区| 天天亚洲美女在线视频| 日韩理论片一区二区| 国产日韩精品一区| 国产午夜久久久久| 久久网站最新地址| 久久久久国产精品麻豆ai换脸| 日韩你懂的电影在线观看| 日韩亚洲欧美中文三级| 欧美精品一二三| 欧美高清视频一二三区 | 亚洲少妇屁股交4| 久久久www免费人成精品| 欧美大片一区二区| 欧美成人三级电影在线| 2024国产精品视频| 久久久久久久综合色一本| 久久精品人人做人人爽97| 欧美激情综合五月色丁香小说| 中国色在线观看另类| 欧美国产日韩亚洲一区| 国产日韩欧美亚洲| 中文字幕亚洲区| 亚洲人xxxx| 午夜在线电影亚洲一区| 免费观看在线色综合| 久久超碰97人人做人人爱| 国产精品一区久久久久| 国产精品一区一区| 成人国产精品免费观看动漫| 91麻豆福利精品推荐| 91麻豆免费视频| 欧美高清视频在线高清观看mv色露露十八 | 日本一区二区三区在线观看| 国产精品久久影院| 亚洲女人****多毛耸耸8| 亚洲国产乱码最新视频| 日产精品久久久久久久性色| 九色综合国产一区二区三区| 国产成人免费在线| 91视频在线看| 欧美精品1区2区| 国产午夜一区二区三区| 亚洲综合精品自拍| 蜜臀av在线播放一区二区三区 | 欧美日韩在线播放三区四区| 欧美精品国产精品| 国产欧美日韩不卡| 一区二区三区国产精品| 毛片av一区二区| 成人av免费在线| 欧美久久免费观看| 欧美国产禁国产网站cc| 一区二区三区精品视频在线| 看电影不卡的网站| 94-欧美-setu| 欧美成人猛片aaaaaaa| 亚洲女同ⅹxx女同tv| 看国产成人h片视频| 99麻豆久久久国产精品免费优播| 欧美精品黑人性xxxx| 国产精品伦理在线| 日本一不卡视频| 91在线看国产| 欧美精品一区二区不卡| 樱桃视频在线观看一区| 国产一区二区三区免费看| 在线一区二区三区做爰视频网站| 欧美videos大乳护士334| 一区二区三区在线观看国产| 国产乱码精品一区二区三区忘忧草| 日本高清视频一区二区| 国产亚洲一区二区三区在线观看| 亚洲一区二区三区爽爽爽爽爽| 国产成人aaa| 欧美一区二区三区啪啪| 亚洲人成网站精品片在线观看| 国产伦精品一区二区三区视频青涩| 欧美在线小视频| 国产精品三级在线观看| 久久99久久久欧美国产| 欧美午夜精品一区二区三区| 国产精品色哟哟网站| 激情文学综合网| 91精品国产综合久久久蜜臀粉嫩| 国产精品不卡在线观看| 激情综合网av| 日韩一级完整毛片| 亚洲国产一二三| 色婷婷一区二区三区四区| 中文久久乱码一区二区| 国产精品自在在线| 欧美电视剧在线看免费| 日本三级亚洲精品| 精品视频一区二区三区免费| 亚洲综合色自拍一区| 91久久奴性调教| 综合久久久久久| 成人av电影观看| 国产精品水嫩水嫩| 国产精品中文欧美| 欧美精品一区二区三区四区| 日韩电影在线免费看| 欧美放荡的少妇| 图片区小说区区亚洲影院| 欧美伦理视频网站| 石原莉奈在线亚洲三区| 欧美精品xxxxbbbb| 日本亚洲电影天堂| 日韩欧美国产精品一区| 人人狠狠综合久久亚洲| 日韩欧美国产综合一区 | 国内精品在线播放| 精品久久人人做人人爽| 国产综合一区二区| 国产婷婷色一区二区三区在线| 国产盗摄精品一区二区三区在线| 久久久久久久久一| 国产91在线观看丝袜| 国产精品国产三级国产普通话蜜臀 | 一区二区三区高清在线| 在线日韩av片| 亚洲大片在线观看| 日韩欧美国产综合在线一区二区三区 | 精品日韩在线观看| 国产乱码精品1区2区3区| 精品国产一区二区三区久久久蜜月| 久国产精品韩国三级视频| 久久网站热最新地址| 99精品久久只有精品| 玉足女爽爽91| 日韩视频一区二区三区| 国产电影一区在线| 一区二区三区 在线观看视频| 欧美日韩激情一区| 免费成人av在线播放| 国产精品视频观看| 欧美三级日本三级少妇99| 欧美aaa在线| 国产欧美va欧美不卡在线| 91麻豆免费在线观看| 欧美aaa在线| 国产精品成人午夜| 91精品婷婷国产综合久久竹菊| 加勒比av一区二区| 亚洲视频免费看| 制服丝袜av成人在线看| 国产成人99久久亚洲综合精品| 夜夜揉揉日日人人青青一国产精品| 制服丝袜成人动漫| 不卡av在线免费观看| 性做久久久久久| 国产精品乱人伦中文| 91精品一区二区三区久久久久久 | 欧美体内she精高潮| 国产在线视视频有精品| 一区二区三区中文在线| 欧美本精品男人aⅴ天堂| 97久久久精品综合88久久| 天堂久久一区二区三区| 国产精品久久久久久久久快鸭| 欧美久久久影院| 色哟哟一区二区在线观看 | 在线观看日韩一区| 美女一区二区久久| 亚洲少妇中出一区| 国产无遮挡一区二区三区毛片日本|