/* * PSYC Manager Daemon, src/person.cc * Copyright (C) 2001 Mark Ralf Thomson */ #include "psycm.h" #include "net.h" #include "classes.h" #include "int_functions.h" #include "msg.h" person::person(char *ip,unsigned short int port,int typ,int fd) { conn.type = typ; conn.fd = fd; conn.port = port; strncpy(conn.ip,ip,IPLEN+1); *conn.id=(char)NULL; conn.ptime = time(NULL); v = new varTable (50); } void person::exit() { }