Ignore:
Timestamp:
Jan 21, 2018, 12:10:09 AM (6 years ago)
Author:
coas-nagasima
Message:

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/asp3_dcre/tinet/net/net_count.h

    r321 r331  
    22 *  TINET (TCP/IP Protocol Stack)
    33 *
    4  *  Copyright (C) 2001-2009 by Dep. of Computer Science and Engineering
     4 *  Copyright (C) 2001-2017 by Dep. of Computer Science and Engineering
    55 *                   Tomakomai National College of Technology, JAPAN
    66 *
     
    155155#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_PPP_LCP */
    156156
     157/* PPP IPV6CP */
     158
     159#if NET_COUNT_ENABLE & PROTO_FLG_PPP_IPV6CP
     160
     161#define NET_COUNT_PPP_IPV6CP(v,c)       ((v)+=(c))
     162
     163#ifndef _MACRO_ONLY
     164
     165extern T_NET_COUNT_VAL net_count_ppp_ipv6cp_in_octets;
     166extern T_NET_COUNT_VAL net_count_ppp_ipv6cp_in_packets;
     167
     168#endif  /* of #ifndef _MACRO_ONLY */
     169
     170#else   /* of #if NET_COUNT_ENABLE & PROTO_FLG_PPP_IPV6CP */
     171
     172#define NET_COUNT_PPP_IPV6CP(v,c)
     173
     174#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_PPP_IPV6CP */
     175
    157176/* PPP IPCP */
    158177
     
    302321#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_NET_BUF */
    303322
    304 #if defined(SUPPORT_INET4)
     323#if defined(_IP4_CFG)
    305324
    306325/* ARP */
     
    380399#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_ICMP4 */
    381400
    382 #endif  /* of #if defined(SUPPORT_INET4) */
    383 
    384 #if defined(SUPPORT_INET6)
     401/* IGMP */
     402
     403#if NET_COUNT_ENABLE & PROTO_FLG_IGMP
     404
     405#define NET_COUNT_IGMP(v,c)     ((v)+=(c))
     406
     407#ifndef _MACRO_ONLY
     408
     409extern T_NET_COUNT      net_count_igmp;
     410
     411#endif  /* of #ifndef _MACRO_ONLY */
     412
     413#else   /* of #if NET_COUNT_ENABLE & PROTO_FLG_IGMP */
     414
     415#define NET_COUNT_IGMP(v,c)
     416
     417#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_IGMP */
     418
     419#endif  /* of #if defined(_IP4_CFG) */
     420
     421#if defined(_IP6_CFG)
    385422
    386423/* IPv6 */
     
    472509#endif  /* of #if NET_COUNT_ENABLE & PROTO_FLG_ND6 */
    473510
    474 #endif  /* of #if defined(SUPPORT_INET6) */
     511#endif  /* of #if defined(_IP6_CFG) */
    475512
    476513#ifdef SUPPORT_TCP
Note: See TracChangeset for help on using the changeset viewer.