10e8e43f34
- Fix memory leak caused by latcp -d & llogin -d - Loads of protocol fixes and speed enhancements NOTE: There are known problems with DECserver 90L terminal servers - Add better support for DS90L servers reverse LAT - Fix REQID message in moprc so it works with more servers.
22 lines
786 B
Text
22 lines
786 B
Text
$NetBSD: patch-ag,v 1.3 2013/10/08 19:46:15 shattered Exp $
|
|
|
|
--- services.h.orig 2002-10-14 14:33:46.000000000 +0000
|
|
+++ services.h
|
|
@@ -13,6 +13,8 @@
|
|
GNU General Public License for more details.
|
|
******************************************************************************/
|
|
|
|
+#include <cstring>
|
|
+
|
|
class LATServices
|
|
{
|
|
public:
|
|
@@ -75,7 +77,7 @@ class LATServices
|
|
const std::string get_ident() { return ident; }
|
|
bool is_available();
|
|
bool remove_node(const std::string &node);
|
|
- void serviceinfo::list_service(std::ostrstream &output);
|
|
+ void list_service(std::ostrstream &output);
|
|
void expire_nodes(time_t);
|
|
void list_nodes(std::ostrstream &output);
|
|
bool touch_dummy_node_respond_counter(const std::string &str_name);
|