2007年8月24日 星期五

一些重要的小東西

char *str = "192.168.200.214";

#把Ascii 式的dot ip 轉為網路傳輸的無號長整數
printf("Long string =%lu\n", inet_addr(str));
// Long string = 3603474624 (D6 C8 A8 C0)

#把網路傳輸的無號長整數轉為Ascii 式的dot ip
printf("Address IP =%s\n", inet_ntoa(inet_addr(str)));
// Address IP = 192.168.200.214 (C0 A8 C8 D6)

===========================================
#如何即時知道目錄下有檔案產生
使用2.6.13之後提供的 inotify