1
I Use This!
Inactive

Commits : Listings

Analyzed about 2 hours ago. based on code collected about 19 hours ago.
Jul 08, 2025 — Jul 08, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Conditional compiles for the tracing code - default off. More... over 13 years ago
Throttle error message rate from persistent-but-remote-dead connections. More... over 13 years ago
Allow for Telnet properties to persist if Service does a "replug". At the moment, this is only used to retain the brkHandler (RFC2217 BRK) when a VMware VMotion event happens. More... about 14 years ago
More compile fixes for SunStudio: - SUNWspro makes a point on one and only one <string.h>/<cstring> "_const_ char* strchr()" proto ... - SUNWspro moans about std::min usage with unsigned/signed combos on SPARC platforms With this change, the code compiles and starts up (no testing done beyond that) on sun4.sunos.5.10 (SPARC). More... about 14 years ago
Compile fixes to allow compiling with: - SunStudio CC - Intel ICC - gcc "-pedantic" Note: Sun Studio dislikes the code in subscriber.cc that'd #ifdef'ed out by this change. That might in fact be a compiler bug, but the feature is not critical enough to either pursue that or to create a workaround in the code for it. More... about 14 years ago
Make service persistency work properly. The previously-implemented autodetach mechanism works in that it deletes the service and all its attachments; but the namespace entry stays around, and is refcounted separately. That means it's possible for the situation to occur that a still-referenced namespace node points to a service that's deleted and gone; whoever picks up a ref to that through the namespace will end up corrupting data. Re-writing the reference counting / RAII mechanism might solve this but is far wider reaching than a "simple" do-not-let-this-die-ever mechanism. More... about 14 years ago
Host name length can be larger than 32 characters; current Aquilon host/domainname lengths already significantly exceed that value. Eventually, sysconf(_SC_HOST_NAME_MAX) should be used but for compile-time guaranteed limits, fall back to _POSIX_HOST_NAME_MAX for now. More... about 14 years ago
Make RFC2217's BAUDRATE equivalent to TELOPT_TSPEED More... over 14 years ago
Basic support for RFC2217 (Telnet COM-PORT extension) for VMware consoles. More... over 14 years ago
IP ACL changes for VMware protocol extension access More... over 14 years ago
cleanup / refactoring of the telnet BREAK code. More... over 14 years ago
Experimental - compile with Intel ICC * doesn't link yet * hundreds of warnings (ICC is picky) More... over 14 years ago
Automatic forced detach on vmware services; "TCP-wrapper" like control for vmware telnet access. More... over 14 years ago
Updates to debugging/tracing code. More... over 14 years ago
Fix fix_fd again; more descriptive flags are easier to use than sequences of booleans with default values ... (the vmotion protocol handling had failed because of a wrong call to fix_fd). More... over 14 years ago
Diagnostic changes and telnet linemode fixes. This is _not a working piece of code at the moment_ !!! More... over 14 years ago
C++0x compile should use -rdynamic as well. More... over 14 years ago
C++ conventions say use initializer lists when possible. Do so for TelnetExtension::TelnetExtension(). More... over 14 years ago
Use -rdynamic so that backtrace_symbols() works properly. More... over 14 years ago
The change from Telnet::setlinemode(int) ==> Telnet::setlinemode(bool) somehow broke console processing; at or at least after the first break to interactive mode, character processing got completely screwed up and mconsd would repeatedly go back to telnet option processing state. Reverting those makes it work again like before ... ARGH ! More... over 14 years ago
sizeInfo() shouldn't be inline More... over 14 years ago
VMware proxy console service autoregistration. More... over 14 years ago
* Fix fix_fd * Const-ify a few more interfaces (Namespace::setAttr) * TESTING: Create /vmware namespace More... over 14 years ago
Who wouldn't want to be omnipotent in some situations ... More... over 14 years ago
VMware extensions updates - better diagnostics (still more work needed) - corrections to the vmotion protocol - exercise more of the extension protocol options More... over 14 years ago
Diagnostic helper macros More... over 14 years ago
Files not needed in the tree anymore, telnetd proxy support will happen with built-in mconsd classes, lest telnet state machine code would need to be duplicated. More... over 14 years ago
make Subscriber::connect() use the same argv as the callbacks do, and adjust callers of ::viewCB to simply pass an empty one in. More... over 14 years ago
STL-ify subscriber.cc (handler dispatch). - make all handlers take std::vector<std::string> instead of argc/argv - parseCommand() code uses std::map<> to look up handlers - const-ify a few more char* pointers More... over 14 years ago
Some cleanup of the STL map definiton code. More... over 14 years ago