協定棧提供ping工具,其標頭檔案為「net_tools/ping.h」,將其include進你的目標系統中即可使用這個工具。
……
#include "onps.h"
#include "net_tools/ping.h"
//* 回撥函數,收到目標地址的應答報文後ping工具會呼叫這個函數完成使用者的特定處理邏輯
//* 針對這個測試,在這裡就是簡單地列印出了應答報文的內容以及ping的響應時間
static void ping_recv_handler(USHORT usIdentifier, //* ping的標識id,響應報文與探測報文這個id應該一致
in_addr_t unFromAddr, //* 響應報文的源地址
USHORT usSeqNum, //* 響應報文序號,其與探測報文一致
UCHAR *pubEchoData, //* 響應報文攜帶的響應資料,其與探測報文一致
UCHAR ubEchoDataLen, //* 響應報文攜帶的資料長度
UCHAR ubTTL, //* ttl值
UCHAR ubElapsedMSecs) //* 響應時長,單位:秒,從傳送探測報文開始計時到收到響應報文結束計時
{
CHAR szSrcAddr[20];
struct in_addr stInAddr;
stInAddr.s_addr = unFromAddr;
printf("<Fr>%s, recv %d bytes, ID=%d, Sequence=%d, Data='%s', TTL=%d, time=%dms\r\n",
inet_ntoa_safe(stInAddr, szSrcAddr), //* 這是一個執行緒安全的ip地址轉ascii字串函數
(UINT)ubEchoDataLen,
usIdentifier,
usSeqNum,
pubEchoData,
(UINT)ubTTL,
(UINT)ubElapsedMSecs);
}
int main(void)
{
if(open_npstack_load(&enErr))
{
printf("The open source network protocol stack (ver %s) is loaded successfully. \r\n", ONPS_VER);
//* 協定棧載入成功,在這裡初始化ethernet網路卡或等待ppp鏈路就緒
#if 0
emac_init(); //* ethernet網路卡初始化函數,並註冊網路卡到協定棧
#else
while(!netif_is_ready("ppp0")) //* 等待ppp鏈路建立成功
os_sleep_secs(1);
#endif
}
else
{
printf("The open source network protocol stack failed to load, %s\r\n", onps_error(enErr));
return -1;
}
//* 啟動ping測試
USHORT usSeqNum = 0;
UINT unErrCount = 0;
INT nPing = ping_start(&enErr);
if(nPing < 0)
{
//* 啟動失敗,輸出一條紀錄檔資訊
printf("ping_start() failed, %s\r\n", onps_error(enErr));
return -1;
}
while(TRUE && usSeqNum < 100)
{
//* ping目標地址
INT nRtnVal = ping(nPing, inet_addr("192.168.0.2"), usSeqNum++, 64, GetElapsedMSecs, ping_recv_handler, 3, &enErr);
if(nRtnVal <= 0) //* ping返回一個錯誤
{
//* 累計ping錯誤數
unErrCount++;
//* 控制檯列印當前錯誤數
printf("no reply received, the current number of errors is %d, current error: %s\r\n", unErrCount, nRtnVal ? onps_error(enErr) : "recv timeout");
}
os_sleep_secs(1);
}
//* 結束ping測試
ping_end(nPing);
return 0;
}
上述範例程式碼呼叫了ping測試工具提供的幾個api函數。ping_start()函數的呼叫非常簡單,其功能就是開啟ping測試。結束ping測試需要呼叫ping_end()函數,否則ping測試會一直佔用協定棧資源。這幾個函數的說明如下:
這個測試需要為網路卡設定好能夠存取網際網路的閘道器、DNS伺服器地址等設定資訊。當然如果採用dhcp動態地址申請的方式能夠得到這些資訊那就更省事了。dns查詢工具的標頭檔案為"net_tools/dns.h"。
……
#include "onps.h"
#include "net_tools/ping.h"
int main(void)
{
if(open_npstack_load(&enErr))
{
printf("The open source network protocol stack (ver %s) is loaded successfully. \r\n", ONPS_VER);
//* 協定棧載入成功,在這裡初始化ethernet網路卡或等待ppp鏈路就緒
#if 0
emac_init(); //* ethernet網路卡初始化函數,並註冊網路卡到協定棧
#else
while(!netif_is_ready("ppp0")) //* 等待ppp鏈路建立成功
os_sleep_secs(1);
#endif
}
else
{
printf("The open source network protocol stack failed to load, %s\r\n", onps_error(enErr));
return -1;
}
//* dns查詢測試
in_addr_t unPrimaryDNS, unSecondaryDNS;
INT nDnsClient = dns_client_start(&unPrimaryDNS, &unSecondaryDNS, 3, &enErr);
if(nDnsClient < 0)
{
//* dns使用者端啟動失敗,輸出一條錯誤紀錄檔
printf("%s\r\n", onps_error(enErr));
}
else
{
//* 傳送查詢請求並等待dns伺服器的應答
in_addr_t unIp = dns_client_query(nDnsClient, unPrimaryDNS, unSecondaryDNS, "gitee.com", &enErr);
if(unIp) //* 查詢成功
{
CHAR szAddr[20];
printf("The ip addr: %s\r\n", inet_ntoa_safe_ext(unIp, szAddr));
}
else
printf("%s\r\n", onps_error(enErr)); //* 查詢失敗
//* 結束dns查詢,釋放佔用的協定棧資源
dns_client_end(nDnsClient);
}
return 0;
}
與ping測試工具相同,dns查詢工具同樣提供了一組簡單的api函數用於實現域名查詢。這一組函數包括dns_client_start()、dns_client_end()以及dns_client_query(),其使用說明如下:
與dns的測試要求一樣,要進行這個測試依然要確保你的開發板在物理層能夠存取網際網路,同時你的開發板支援rtc,並提供一組rtc操作函數,包括讀取、設定系統當前時間等api。這裡假設你的測試環境已經具備上述測試條件。sntp網路校時工具的標頭檔案為"net_tools/sntp.h"。
……
#include "onps.h"
#include "net_tools/sntp.h"
int main(void)
{
if(open_npstack_load(&enErr))
{
printf("The open source network protocol stack (ver %s) is loaded successfully. \r\n", ONPS_VER);
//* 協定棧載入成功,在這裡初始化ethernet網路卡或等待ppp鏈路就緒
#if 0
emac_init(); //* ethernet網路卡初始化函數,並註冊網路卡到協定棧
#else
while(!netif_is_ready("ppp0")) //* 等待ppp鏈路建立成功
os_sleep_secs(1);
#endif
}
else
{
printf("The open source network protocol stack failed to load, %s\r\n", onps_error(enErr));
return -1;
}
//* 先設定個不合理的時間,以測試網路校時功能是否正常,由rtc驅動提供,負責修改系統當前時間
//* RTC字首的函數為目標系統應提供的rtc時鐘操作函數
RTCSetSysTime(22, 9, 5, 17, 42, 30);
//* 開啟網路校時,sntp_update_by_ip()與sntp_update_by_dns()均可使用
ST_DATETIME stDateTime;
#if 1
if(sntp_update_by_ip("52.231.114.183", NULL, RTCSetSystemUnixTimestamp, 8, &enErr)) //* ntp伺服器地址直接校時
#else
if(sntp_update_by_dns("time.windows.com", Time, RTCSetSystemUnixTimestamp, 8, &enErr)) //* ntp伺服器域名方式校時
#endif
{
//* 獲取系統時間,檢查校時結果
RTCGetSysTime(&stDateTime);
//* 控制檯輸出當前系統時間
printf("The time is %d-%02d-%02d %02d:%02d:%02d\r\n", stDateTime.usYear, stDateTime.ubMonth,
stDateTime.ubDay, stDateTime.ubHour, stDateTime.ubMin, stDateTime.ubSec);
}
else
{
printf("%s\r\n", onps_error(enErr));
return -1;
}
return 0;
}
測試程式碼首先把時間設定在了2022年9月5日17點42分30秒,目的是為了驗證目標系統時間是否會被成功校正。測試程式碼用到了目標系統應提供的一組rtc時鐘操作函數。其中RTCSetSysTime()用於設定系統時間。RTCSetSystemUnixTimestamp()函數同樣也是設定系統時間,只不過是通過unix時間戳進行設定。RTCGetSysTime()函數用於讀取當前系統時間。相較於ping及dns工具,sntp網路校時工具只提供了一個介面函數sntp_update_by_xx()即可完成校時。我們可以通過ntp伺服器地址也可以通過ntp伺服器域名進行校時。該函數的詳細使用說明如下:
sntp_update_by_dns()函數與sntp_update_by_ip()函數除了第一個入口引數變成了域名外,其它完全相同,不再贅述。