/********************************************************
 * File: pkt.h
 * Created at Sun Jan 28 22:10:32 MSK 2001 by raorn // raorn@binec.ru
 *
 * $Id: pkt.h,v 1.4 2001/05/09 01:06:47 raorn Exp $
 *******************************************************/

struct Pkt {
  struct Pkt *Next;
  FILE *fh;
  ulong hexnum;
  ulong Len;
  ushort Type;
  struct Node4D Dest;
  struct Node4D Orig;
};

bool ReadPkt(uchar *pkt, struct FileEntry *fe, bool(*handlefunc) (struct MemMessage *mm, bool no_echomail), bool no_security, bool no_echomail);
bool WriteEchoMail(struct MemMessage *mm, struct ConfigNode *cnode, struct Aka *aka);
void ClosePackets(void);


syntax highlighted by Code2HTML, v. 0.9.1