1 /******************************************************************************
2     (c) 2001-2003 Christine Caulfield                 christine.caulfield@googlemail.com
3 
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     any later version.
8 
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13 ******************************************************************************/
14 
15 class localportSession: public lloginSession
16 {
17  public:
18     localportSession(class LATConnection &p, class LocalPort *port,
19 		     unsigned char remid, unsigned char localid, char *lta, int);
20 
21     virtual ~localportSession();
22     virtual void do_read();
23     virtual void show_status(unsigned char *node, LAT_StatusEntry *entry);
24 
25 
26  private:
27     LocalPort *localport;
28 
29 
30     int minimum_read;
31     bool ignored_read;
32 };
33