在C语言中对utmp文件进行查找和写入操作的函数小结
C语言pututline()函数:将utmp记录写入文件 #include <utmp.h> 定义函数: void pututline(struct utmp *ut); 函数说明:pututline()用来将参数ut 的utmp 结构记录到utmp 文件中. 此函数会先用getutid()来取得正确的写入位置,如果没有找到相符的记录则会加入到utmp 文件尾. 范例 #include <utmp.h> main() { struct utmp ut; ut.ut_type = USER_PROCESS; ut.ut_pid = getpid(); strcpy(ut.ut_user,"kids"); strcpy(ut.ut_line,"pts/1"); strcpy(ut.ut_host,"www.gnu.org"); pututline(&ut); } 执行: //执行范例后用指令who -l 观察 root pts/0 dec9 19:20 kids pts/1 dec12 10:31(www.gnu.org) root pts/2 dec12 13:33 C语言getutline()函数:文件查找函数(从utmp文件中查找特定的) #include <utmp.h> 定义函数: struct utmp * getutline(struct utmp *ut); 函数说明:getutline()用来从目前utmp 文件的读写位置逐一往后搜索ut_type 为USER_PROCESS 或LOGIN_PROCESS 的记录,而且ut_line 和ut->ut_line 相符. 找到相符的记录便将该数据以utmp 结构返回。 返回值:返回 utmp 结构数据,如果返回NULL 则表示已无数据,或有错误发生. 范例 #include <utmp.h> main() { struct utmp ut,*u; strcpy(ut.ut_line,"pts/1"); while((u = getutline(&ut))) { printf("%d %s %s %s n",u->ut_type,u->ut_user,u->ut_line,u->ut_host); } } 执行: 7 root pts/1 C语言getutid()函数:从utmp文件中查找特定的记录 #include <utmp.h> 定义函数: strcut utmp *getutid(strcut utmp *ut); 函数说明: 返回值:返回 utmp 结构数据,*u; ut.ut_type=RUN_LVL; while((u = getutid(&ut))) { printf("%d %s %s %sn",u->ut_host); } } 执行: 1 runlevel - (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |