/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/netif/ppp/ |
H A D | ppp.c | 2 * ppp.c - Network Point to Point Protocol program file. 64 * if_ppp.h - Point-to-Point Protocol definitions. 167 * PPP Data Link Layer "protocol" table. 168 * One entry per supported protocol. 212 static err_t ppp_netif_output(struct netif *netif, struct pbuf *pb, u16_t protocol); 354 /* LCP not open, close link protocol */ in ppp_close() 371 /* forced link termination, this will force link protocol to disconnect. */ in ppp_close() 504 static err_t ppp_netif_output(struct netif *netif, struct pbuf *pb, u16_t protocol) { in ppp_netif_output() argument 512 || (protocol == PPP_IP && !pcb->if4_up) in ppp_netif_output() 515 || (protocol == PPP_IPV6 && !pcb->if6_up) in ppp_netif_output() [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/netif/ppp/ |
H A D | ppp.c | 2 * ppp.c - Network Point to Point Protocol program file. 64 * if_ppp.h - Point-to-Point Protocol definitions. 167 * PPP Data Link Layer "protocol" table. 168 * One entry per supported protocol. 212 static err_t ppp_netif_output(struct netif *netif, struct pbuf *pb, u16_t protocol); 345 /* LCP not open, close link protocol */ in ppp_close() 362 /* forced link termination, this will force link protocol to disconnect. */ in ppp_close() 500 static err_t ppp_netif_output(struct netif *netif, struct pbuf *pb, u16_t protocol) { in ppp_netif_output() argument 508 || (protocol == PPP_IP && !pcb->if4_up) in ppp_netif_output() 511 || (protocol == PPP_IPV6 && !pcb->if6_up) in ppp_netif_output() [all …]
|
/nrf52832-nimble/rt-thread/components/net/sal_socket/src/ |
H A D | sal_socket.c | 38 /* The global TLS protocol options */ 42 /* The global array of available protocol families */ 49 #define IS_SOCKET_PROTO_TLS(sock) (((sock)->protocol == PROTOCOL_TLS) || \ 50 ((sock)->protocol == PROTOCOL_DTLS)) 100 * This function will register TLS protocol to the global TLS protocol. 102 * @param pt TLS protocol object 104 * @return 0: TLS protocol object register success 117 * This function will register protocol family to the global array of protocol families. 119 * @param pf protocol family object 121 * @return 0: protocol family object register success [all …]
|
/nrf52832-nimble/rt-thread/components/net/freemodbus/modbus/include/ |
H A D | mb.h | 47 * the basic functions and types required to use the Modbus protocol stack. 50 * the protocol stack. In the main loop the function eMBPoll() must be called 56 * // Initialize protocol stack in RTU mode for a slave with address 10 = 0x0A 58 * // Enable the Modbus Protocol Stack. 62 * // Call the main polling loop of the Modbus protocol stack. 97 * registers should be updated and reading means that the modbus protocol 105 MB_REG_READ, /*!< Read register values and pass to protocol stack. */ 110 * \brief Errorcodes used by all function in the protocol stack. 120 MB_EILLSTATE, /*!< protocol stack in illegal state. */ 127 * \brief Initialize the Modbus protocol stack. [all …]
|
H A D | mb_m.h | 42 * the basic functions and types required to use the Modbus Master protocol stack. 45 * the protocol stack. In the main loop the function eMBMasterPoll() must be called 51 * // Initialize protocol stack in RTU mode for a Master 53 * // Enable the Modbus Protocol Stack. 57 * // Call the main polling loop of the Modbus Master protocol stack. 97 * \brief Initialize the Modbus Master protocol stack. 112 * The protocol is then in the disabled state and ready for activation 121 * \brief Initialize the Modbus Master protocol stack for Modbus TCP. 127 * \return If the protocol stack has been initialized correctly the function 137 * \brief Release resources used by the protocol stack. [all …]
|
/nrf52832-nimble/rt-thread/components/net/ |
H A D | Kconfig | 13 menu "protocol stack implement" 26 bool "Support MbedTLS protocol" 51 int "the maximum number of protocol families" 83 bool "IPV6 protocol" 88 bool "IGMP protocol" 92 bool "ICMP protocol" 96 bool "SNMP protocol" 135 bool "UDP protocol" 139 bool "TCP protocol" 143 bool "RAW protocol" [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/netif/ppp/ |
H A D | ppp_impl.h | 2 * ppp.h - Network Point to Point Protocol header file. 87 * Protocol field values. 89 #define PPP_IP 0x21 /* Internet Protocol */ 91 #define PPP_AT 0x29 /* AppleTalk Protocol */ 92 #define PPP_IPX 0x2b /* IPX protocol */ 99 #define PPP_IPV6 0x57 /* Internet Protocol Version 6 */ 104 #define PPP_IPCP 0x8021 /* IP Control Protocol */ 106 #define PPP_ATCP 0x8029 /* AppleTalk Control Protocol */ 107 #define PPP_IPXCP 0x802b /* IPX Control Protocol */ 110 #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol */ [all …]
|
H A D | lcp.h | 2 * lcp.h - Link Control Protocol definitions. 60 #define CI_QUALITY 4 /* Quality Protocol */ 62 #define CI_PCOMPRESSION 7 /* Protocol Field Compression */ 83 #define PROTREJ 8 /* Protocol Reject */ 91 #define CBCP_OPT 6 /* Use callback control protocol */ 128 unsigned int neg_pcompression :1; /* HDLC Protocol Field Compression? */ 160 void lcp_sprotrej(ppp_pcb *pcb, u_char *p, int len); /* send protocol reject */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/netif/ppp/ |
H A D | ppp_impl.h | 2 * ppp.h - Network Point to Point Protocol header file. 91 * Protocol field values. 93 #define PPP_IP 0x21 /* Internet Protocol */ 95 #define PPP_AT 0x29 /* AppleTalk Protocol */ 96 #define PPP_IPX 0x2b /* IPX protocol */ 103 #define PPP_IPV6 0x57 /* Internet Protocol Version 6 */ 108 #define PPP_IPCP 0x8021 /* IP Control Protocol */ 110 #define PPP_ATCP 0x8029 /* AppleTalk Control Protocol */ 111 #define PPP_IPXCP 0x802b /* IPX Control Protocol */ 114 #define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol */ [all …]
|
H A D | lcp.h | 2 * lcp.h - Link Control Protocol definitions. 64 #define CI_QUALITY 4 /* Quality Protocol */ 66 #define CI_PCOMPRESSION 7 /* Protocol Field Compression */ 87 #define PROTREJ 8 /* Protocol Reject */ 95 #define CBCP_OPT 6 /* Use callback control protocol */ 132 unsigned int neg_pcompression :1; /* HDLC Protocol Field Compression? */ 164 void lcp_sprotrej(ppp_pcb *pcb, u_char *p, int len); /* send protocol reject */
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/ |
H A D | README | 3 lwIP is a small independent implementation of the TCP/IP protocol 15 * IP (Internet Protocol) including packet forwarding over multiple network 17 * ICMP (Internet Control Message Protocol) for network maintenance and debugging 18 * IGMP (Internet Group Management Protocol) for multicast traffic management 19 * UDP (User Datagram Protocol) including experimental UDP-lite extensions 20 * TCP (Transmission Control Protocol) with congestion control, RTT estimation 25 * SNMP (Simple Network Management Protocol) 26 * DHCP (Dynamic Host Configuration Protocol) 28 * PPP (Point-to-Point Protocol) 29 * ARP (Address Resolution Protocol) for Ethernet
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/ |
H A D | README | 3 lwIP is a small independent implementation of the TCP/IP protocol suite. 16 * IP (Internet Protocol, IPv4 and IPv6) including packet forwarding over 18 * ICMP (Internet Control Message Protocol) for network maintenance and debugging 19 * IGMP (Internet Group Management Protocol) for multicast traffic management 26 * UDP (User Datagram Protocol) including experimental UDP-lite extensions 27 * TCP (Transmission Control Protocol) with congestion control, RTT estimation 32 TCP-based protocol (ported to mbedTLS) (see changelog for more info) 33 * PPPoS and PPPoE (Point-to-point protocol over Serial/Ethernet) 41 * SNMPv2c agent with MIB compiler (Simple Network Management Protocol), v3 via altcp 42 * SNTP (Simple network time protocol)
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/netif/ppp/ |
H A D | ppp_impl.h | 2 * ppp.h - Network Point to Point Protocol header file. 134 * Protocol field values. 136 #define PPP_IP 0x21 /* Internet Protocol */ 137 #define PPP_AT 0x29 /* AppleTalk Protocol */ 141 #define PPP_IPCP 0x8021 /* IP Control Protocol */ 142 #define PPP_ATCP 0x8029 /* AppleTalk Control Protocol */ 143 #define PPP_CCP 0x80fd /* Compression Control Protocol */ 144 #define PPP_LCP 0xc021 /* Link Control Protocol */ 145 #define PPP_PAP 0xc023 /* Password Authentication Protocol */ 146 #define PPP_LQR 0xc025 /* Link Quality Report protocol */ [all …]
|
H A D | ppp.c | 2 * ppp.c - Network Point to Point Protocol program file. 64 * if_ppp.h - Point-to-Point Protocol definitions. 153 PDPROTOCOL1, /* Process protocol field 1. */ 154 PDPROTOCOL2, /* Process protocol field 2. */ 183 u16_t inProtocol; /* The input protocol code. */ 207 int pcomp; /* Does peer accept protocol compression? */ 231 int protocol; /* PPP procotol, e.g. PPP_IP */ member 258 * PPP Data Link Layer "protocol" table. 259 * One entry per supported protocol. 410 lcp_open(pd); /* Start protocol */ in pppStart() [all …]
|
H A D | lcp.h | 2 * lcp.h - Network Link Control Protocol header file. 34 * lcp.h - Link Control Protocol definitions. 62 #define CI_QUALITY 4 /* Quality Protocol */ 64 #define CI_PCOMPRESSION 7 /* Protocol Field Compression */ 74 #define PROTREJ 8 /* Protocol Reject */ 78 #define CBCP_OPT 6 /* Use callback control protocol */ 92 u_int neg_pcompression : 1; /* HDLC Protocol Field Compression? */ 143 void lcp_sprotrej (int, u_char *, int); /* send protocol reject */
|
H A D | auth.c | 422 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) { in link_down() 425 if (protp->protocol < 0xC000 && protp->close != NULL) { in link_down() 459 if (protp->protocol != PPP_LCP && protp->enabled_flag && protp->lowerup != NULL) { in link_established() 552 if (protp->protocol < 0xC000 && protp->enabled_flag && protp->open != NULL) { in network_phase() 554 if (protp->protocol != PPP_CCP) { in network_phase() 568 * The peer has failed to authenticate himself using `protocol'. 571 auth_peer_fail(int unit, u16_t protocol) in auth_peer_fail() argument 573 LWIP_UNUSED_ARG(protocol); in auth_peer_fail() 575 AUTHDEBUG(LOG_INFO, ("auth_peer_fail: %d proto=%X\n", unit, protocol)); in auth_peer_fail() 585 * The peer has been successfully authenticated using `protocol'. [all …]
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/ |
H A D | README | 3 lwIP is a small independent implementation of the TCP/IP protocol 16 * IP (Internet Protocol, IPv4 and IPv6) including packet forwarding over 18 * ICMP (Internet Control Message Protocol) for network maintenance and debugging 19 * IGMP (Internet Group Management Protocol) for multicast traffic management 25 * UDP (User Datagram Protocol) including experimental UDP-lite extensions 26 * TCP (Transmission Control Protocol) with congestion control, RTT estimation 36 * SNMPv2c agent with MIB compiler (Simple Network Management Protocol) 37 * SNTP (Simple network time protocol)
|
/nrf52832-nimble/rt-thread/components/net/sal_socket/include/ |
H A D | sal.h | 36 /* The maximum number of protocol families */ 48 int (*socket) (int domain, int type, int protocol); 82 int protocol; member 94 int family; /* primary protocol families type */ 95 int sec_family; /* secondary protocol families type */ 96 …int (*create)(struct sal_socket *sal_socket, int type, int protocol); /* register socket options… 98 struct sal_proto_ops *ops; /* protocol family options */ 106 /* SAL protocol family register and unregister operate */
|
H A D | sal_tls.h | 19 /* Protocol level for TLS. 20 * Here, the same socket protocol level for TLS as in Linux was used. 35 /* Protocol numbers for TLS protocols */ 57 char name[RT_NAME_MAX]; /* TLS protocol name */ 58 const struct sal_proto_tls_ops *ops; /* SAL TLS protocol options */ 61 /* SAL TLS protocol register */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/prot/ |
H A D | ethernet.h | 3 * Ethernet protocol definitions 109 /** Internet protocol v4 */ 111 /** Address resolution protocol */ 119 /** Internet protocol v6 */ 133 /** Link layer discovery protocol */ 137 /** Media redundancy protocol */ 139 /** Precision time protocol */ 155 * or known to be 32-bit aligned within the protocol header. */ 161 * variables and known to be 16-bit aligned within the protocol header. */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/prot/ |
H A D | ieee.h | 53 /** Internet protocol v4 */ 55 /** Address resolution protocol */ 63 /** Internet protocol v6 */ 77 /** Link layer discovery protocol */ 81 /** Media redundancy protocol */ 83 /** Precision time protocol */
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ |
H A D | index.rst | 48 - **Coming Soon**: Assigning an Internet Protocol (IP) address 50 through Internet Protocol Support Profile (IPSP) 84 - **Logical Link Control and Adaptation Protocol (L2CAP)**: provides 88 - **Security Manager (SM)**: uses Security Manager Protocol (SMP) 91 - **Attribute protocol (ATT)**: allows a device (*Server*) to expose 95 ATT protocol to exchange attributes encapsulated as 100 Protocol and Generic Attribute Profile.
|
/nrf52832-nimble/rt-thread/components/net/freemodbus/ |
H A D | Changelog.txt | 75 - OTHER (ALL): License is now BSD for protocol stack. 100 with the protocol stack. 104 which makes shutdown of the protocol stack easier. 117 which pvMBFrameCloseCur( ) is called when the protocol stack 138 handler is deregistered from the protocol stack. 143 codes without touching the protocol stack. 248 - FEATURES: added required functions to core protocol stack to support 252 - OTHER: The implementation of eMBClose to shutdown the protocol stack 269 - FEATURES: implement shutdown functionality for protocol stack. 270 - FEATURES: protocol stack can be enabled and disabled during runtime.
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | stats.h | 63 /** Protocol related stats */ 73 STAT_COUNTER proterr; /* Protocol error. */ 87 STAT_COUNTER proterr; /* Protocol error. */ 196 * been detected to prevent their being deliverable to a higher-layer protocol. One possible 200 * preventing them from being deliverable to a higher-layer protocol. For character- 202 * contained errors preventing them from being deliverable to a higher-layer protocol. */ 205 * were discarded because of an unknown or unsupported protocol. For character-oriented 206 * or fixed-length interfaces that support protocol multiplexing the number of transmission 208 * protocol. For any interface that does not support protocol multiplexing, this counter will
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | stats.h | 63 /** Protocol related stats */ 73 STAT_COUNTER proterr; /* Protocol error. */ 87 STAT_COUNTER proterr; /* Protocol error. */ 196 * been detected to prevent their being deliverable to a higher-layer protocol. One possible 200 * preventing them from being deliverable to a higher-layer protocol. For character- 202 * contained errors preventing them from being deliverable to a higher-layer protocol. */ 205 * were discarded because of an unknown or unsupported protocol. For character-oriented 206 * or fixed-length interfaces that support protocol multiplexing the number of transmission 208 * protocol. For any interface that does not support protocol multiplexing, this counter will
|