addr_test.c
来自「ecos实时嵌入式操作系统」· C语言 代码 · 共 136 行
C
136 行
//==========================================================================//// tests/addr_test.c//// Test network "address" functions////==========================================================================//####BSDCOPYRIGHTBEGIN####//// -------------------------------------------//// Portions of this software may have been derived from OpenBSD or other sources,// and are covered by the appropriate copyright disclaimers included herein.//// -------------------------------------------////####BSDCOPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s): gthomas// Contributors: gthomas// Date: 2002-03-19// Purpose: // Description: // ////####DESCRIPTIONEND####////==========================================================================// Networking library test code#include <network.h>#include <cyg/infra/testcase.h>#define STACK_SIZE (CYGNUM_HAL_STACK_SIZE_TYPICAL + 0x1000)static char stack[STACK_SIZE];static cyg_thread thread_data;static cyg_handle_t thread_handle;voidpexit(char *s){ char msg[256]; diag_sprintf(msg, "%s: %s", s, strerror(errno)); CYG_TEST_FAIL_FINISH(msg);}static voidwalk_addrs(struct addrinfo *ai, char *title){ char addr_buf[256]; diag_printf("INFO: %s\n", title); while (ai) { _inet_ntop(ai->ai_addr, addr_buf, sizeof(addr_buf)); diag_printf("INFO: Family: %d, Socket: %d, Addr: %s, Port: %d\n", ai->ai_family, ai->ai_socktype, addr_buf, _inet_port(ai->ai_addr)); ai = ai->ai_next; }}int net_test(CYG_ADDRWORD data){ int err; struct addrinfo *addrs, hints; bzero(&hints, sizeof(hints)); hints.ai_family = PF_UNSPEC; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; if ((err = getaddrinfo(NULL, "7734", &hints, &addrs)) != EAI_NONE) { diag_printf("<ERROR> can't getaddrinfo(): %s\n", gai_strerror(err)); pexit("getaddrinfo"); } walk_addrs(addrs, "all passive"); bzero(&hints, sizeof(hints)); hints.ai_family = PF_UNSPEC; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = 0; if ((err = getaddrinfo(NULL, "7734", &hints, &addrs)) != EAI_NONE) { diag_printf("<ERROR> can't getaddrinfo(): %s\n", gai_strerror(err)); pexit("getaddrinfo"); } walk_addrs(addrs, "all active"); bzero(&hints, sizeof(hints)); hints.ai_family = PF_INET; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; if ((err = getaddrinfo(NULL, "7734", &hints, &addrs)) != EAI_NONE) { diag_printf("<ERROR> can't getaddrinfo(): %s\n", gai_strerror(err)); pexit("getaddrinfo"); } walk_addrs(addrs, "IPv4 passive");#ifdef CYGPKG_NET_INET6 bzero(&hints, sizeof(hints)); hints.ai_family = PF_INET6; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; if ((err = getaddrinfo(NULL, "7734", &hints, &addrs)) != EAI_NONE) { diag_printf("<ERROR> can't getaddrinfo(): %s\n", gai_strerror(err)); pexit("getaddrinfo"); } walk_addrs(addrs, "IPv6 passive");#endif bzero(&hints, sizeof(hints)); hints.ai_family = PF_UNSPEC; hints.ai_socktype = SOCK_DGRAM; hints.ai_flags = AI_PASSIVE; if ((err = getaddrinfo(NULL, "snmp", &hints, &addrs)) != EAI_NONE) { diag_printf("<ERROR> can't getaddrinfo(): %s\n", gai_strerror(err)); pexit("getaddrinfo"); } walk_addrs(addrs, "all snmp/udp"); CYG_TEST_PASS_FINISH("Address [library] test OK");}voidcyg_start(void){ // Create a main thread, so we can run the scheduler and have time 'pass' cyg_thread_create(10, // Priority - just a number net_test, // entry 0, // entry parameter "Network test", // Name &stack[0], // Stack STACK_SIZE, // Size &thread_handle, // Handle &thread_data // Thread data structure ); cyg_thread_resume(thread_handle); // Start it cyg_scheduler_start();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?