Home | History | Annotate | Download | only in racoon

Lines Matching defs:ut

1658 	struct utmp ut;
1672 strncpy(ut.ut_name, usr, UT_NAMESIZE);
1673 ut.ut_name[UT_NAMESIZE - 1] = '\0';
1675 strncpy(ut.ut_line, term, UT_LINESIZE);
1676 ut.ut_line[UT_LINESIZE - 1] = '\0';
1679 strncpy(ut.ut_host, addr, UT_HOSTSIZE);
1680 ut.ut_host[UT_HOSTSIZE - 1] = '\0';
1682 ut.ut_time = time(NULL);
1686 ut.ut_name, ut.ut_line, ut.ut_host);
1688 login(&ut);