summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Quiet down the logging a bit.Nate Straz2008-09-231-1/+1
|
* Ignore the SIGTTIN signal so we don't get caught in a read(0, ...)-SIGTTINv1.3-2Nate Straz2008-09-232-1/+7
| | | | infinite loop.
* Bump the version of qarsh because we fixed some important bugsv1.3-1Nate Straz2008-09-231-2/+2
|
* Set a flag when a command finishes rather than exiting the select loop.Dean Jansa2008-09-231-3/+15
| | | | There may still be output to be read even after the command completed.
* Set close on exec flag on our sockets in connect_to_peer()Dean Jansa2008-09-231-0/+13
|
* Fix memory leak in send_packetNate Straz2008-09-231-1/+4
|
* Increase the number of connections per second allowed.Nate Straz2008-09-231-0/+1
|
* Bump versv1.2-2Dean Jansa2008-09-231-1/+4
|
* Use hbeat interface which has been pulled out into its ownDean Jansa2008-09-232-67/+22
| | | | set of files.
* Added interfaces to get/set the hbeat state.Dean Jansa2008-09-233-28/+109
|
* Add heartbeat interface lib filesDean Jansa2008-09-233-0/+155
|
* Bump the version number to make a package with Dean's latest fix.v1.2-1Nate Straz2008-09-231-1/+4
|
* Fix a bug in heartbeat(). Need to reset host state when we got some IO from ↵Dean Jansa2008-09-231-10/+11
| | | | the host, and we only want to check for timeout if we were already in HOST_QUIET
* Bump the version for new featuresv1.1-1Nate Straz2008-09-231-1/+4
|
* Rework heartbeating to run a small state machine, and change fromDean Jansa2008-09-231-30/+77
| | | | | | | | -m missed to -t timeout on the command line. New env var - QARSH_TIMEOUT can be set to change the default timeout. Command line -t overrides this env var.
* Remove Packager: since beehive is choking on thatNate Straz2008-09-231-1/+0
|
* Version the tarball according to the spec file versionNate Straz2008-09-232-3/+7
|
* Clean up printing of file xfers.Dean Jansa2008-09-231-13/+13
|
* Merge qarsh revisions 1727:1738 from sistina-test branch djansa-qarsh.Nate Straz2008-09-236-87/+413
|
* - Split qarshd and btimed into their own package with their xinetd files.Nate Straz2008-09-232-5/+43
| | | | - Don't link btimec and btimed against libxml2.
* - Add xinetd file for qarsh.Nate Straz2008-09-232-1/+16
| | | | - Fix paths in xinetd config files
* Merge r1727 from sistina-test branch djansa-qarshNate Straz2008-09-232-199/+26
|
* Initial pass at packagingv1.0-1Nate Straz2008-09-232-27/+59
|
* Flatten the qarsh tree.Nate Straz2008-09-2314-50/+12
|
* Copy btime and qarsh over from sistina-test treeNate Straz2008-09-236-0/+480
|
* Use rstat to help construct the remote pathname of the copied file.Dean Jansa2005-09-021-24/+72
|
* Add new packet type QP_RSTAT and supporting code.Dean Jansa2005-09-023-1/+122
|
* Fix indexing into argv[file] to grab entire file.Dean Jansa2005-09-011-2/+2
|
* Add qacp to install/uninstall/clobberDean Jansa2005-09-011-0/+3
|
* Pull out old debug output.Dean Jansa2005-09-011-4/+3
| | | | | | Fix the syslog of the QP_GETFILE to a QP_RECVFILE Fix typeo in the returncode packet in QP_RECVFILE
* Added qacp, the scp replacement using qarshd. Currently can only Dean Jansa2005-09-015-3/+595
| | | | | | | transver files *to* the remote host. No recursive copies and the srcfile can not be a dir. These features are underway. New packet types were added and handlers for those packets in qarshd.
* Pull signal handleing out of the error case of a pselect return.Dean Jansa2005-08-311-11/+16
| | | | | | | We want to handle the child_exitted flag each time we come out of the pselect.
* Remove cmdline splitting. We can just run everything through the shell.Nate Straz2005-08-311-28/+1
|
* Add '&' to the list of characters used to detect if we need to useNate Straz2005-08-291-1/+1
| | | | | sh to run the command line. Found by Dean.
* Rework the pselect loop.Nate Straz2005-08-251-47/+41
| | | | | | - Only read once, let select tell us when to read. - When select is interrupted, only check signals
* Put child process in its own process group and send signals to theNate Straz2005-08-251-1/+2
| | | | | whole process group.
* Generalize the signal setup and move it to its own function.Nate Straz2005-08-251-10/+25
| | | | | We now propogate SIGTERM, SIGHUP, SIGUSR1, SIGUSR2, and SIGINT.
* Initial pass at signal propogation. Only SIGINT is passed along at this point.Nate Straz2005-08-244-18/+144
|
* Add a new packet type "setuser" so we can become any user/group combination.Nate Straz2005-08-244-3/+173
| | | | | With this mod, `qarsh foo@host` should look the same as `ssh foo@host.`
* Move send_packet() and recv_packet() to sockutil.c so qarsh can use them too.Nate Straz2005-08-244-65/+64
|
* Encode the command line, we'll get back to the rest later.Nate Straz2005-08-241-1/+1
|
* Make qarsh a little more "user friendly."Nate Straz2005-08-241-6/+24
|
* peernamelen must be initialized, was getting really lucky.Nate Straz2005-08-241-1/+1
|
* Add initial working version of the QA Remote SHell.Nate Straz2005-08-247-0/+1138