summaryrefslogtreecommitdiff
path: root/doc/api-auth.texi (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ssh/auth.c: Throw `wrong-type-arg' instead of `guile-ssh-error'Artyom Poptsov2014-07-071-14/+3
| | | | | | | | * ssh/auth.c: Throw `wrong-type-arg' instead of `guile-ssh-error' if a disconnected session is passed as an argument to procedures in the module. * ssh/session-type.h (GSSH_VALIDATE_CONNECTED_SESSION): New macro. * doc/api-auth.texi (Auth): Update.
* ssh/auth.c: Handle disconnected sessionsArtyom Poptsov2014-07-061-0/+14
| | | | | | | | | | | * ssh/auth.c (guile_ssh_userauth_public_key_x) (guile_ssh_userauth_public_key_auto_x) (guile_ssh_userauth_public_key_try, guile_ssh_userauth_agent_x) (guile_ssh_userauth_password_x, guile_ssh_userauth_none_x) (guile_ssh_userauth_get_list): Throw `guile-ssh-error' if the session is not connected. * doc/api-auth.texi (Auth): Update. * NEWS: Update.
* ssh/auth.c: Rename some proceduresArtyom Poptsov2014-06-011-3/+46
| | | | | | | | | | | | | | | | | | * ssh/auth.c (guile_ssh_userauth_pubkey): Rename to `guile_ssh_userauth_public_key_x'. All callers updated. (guile_ssh_userauth_pubkey_auto_x): Rename to `guile_ssh_userauth_public_key_auto_x'. All callers updated. (guile_ssh_userauth_password): Rename to `guile_ssh_userauth_password_x'. All callers updated. (guile_ssh_userauth_public_key_try): New procedure. * ssh/auth.h, ssh/auth.scm: Update. * examples/echo/client.scm.in (main): Update. * examples/sssh.scm.in (main): Update. * tests/client-server.scm ("userauth-pubkey!, success"): Rename to "userauth-public-key!, success". Update. * doc/api-auth.texi (Auth): Update. Add description of `userauth-public-key/try' and `userauth-agent!' procedures. * NEWS: Update.
* ssh/auth.c: Remove username form parameter list of functions.Artyom Poptsov2014-03-221-7/+39
| | | | | | | | | | | | | | | * ssh/auth.c (guile_ssh_userauth_pubkey): Don't take a username as an parameter. All callers updated. (guile_ssh_userauth_password): Likewise. * examples/ssshd.scm.in (handle-req-auth): Update. * examples/echo/client.scm.in (main): Update. * tests/client-server.scm ("userauth-password!, success") ("userauth-password!, denied", "userauth-password!, partial") ("userauth-pubkey!, success"): Update TCs. * doc/api-auth.texi (Auth): Update documentation for `userauth-pubkey!' and `userauth-password!'. Add a general note about setting of a username. * doc/version.texi: Update.
* doc/api-auth.texi (Auth): Add description of `(ssh auth)' module.Artyom Poptsov2014-01-311-0/+3
| | | | | * doc/api-auth.texi (Auth): Add general description of `(ssh auth)' module.
* doc/guile-ssh.texi (Top): Add `Concept Index'.Artyom Poptsov2014-01-281-0/+1
| | | | | | | | | | * doc/api-version.texi (Version): Update concepts. * doc/api-sessions.texi (Sessions): Likewise. * doc/api-messages.texi (Messages, Parsing of Requests): Likewise. * doc/api-channels.texi (Channels): Likewise. * doc/api-auth.texi (Auth): Likewise. * doc/guile-ssh.texi (Top): Add `Concept Index'. * doc/indices.texi (Concept Index): New node.
* doc/*: Improve the documentation.Artyom Poptsov2014-01-281-9/+16
| | | | | | * doc/api-auth.texi, api-channels.texi, api-keys.texi, api-servers.texi, api-sessions.texi, api-version.texi, guile-ssh.texi: Improve.
* Add documentation in Texinfo format.Artyom Poptsov2014-01-271-0/+73
* configure.ac: Add `doc/Makefile' to `AC_CONFIG_FILES'. * Makefile.am (SUBDIRS): Add `doc' directory. * doc/Makefile.am: New file. * doc/api-auth.texi, doc/api-channels.texi, doc/api-keys.texi, doc/api-messages.texi, doc/api-servers.texi, doc/api-sessions.texi, doc/api-version.texi, doc/fdl.texi, doc/guile-ssh.texi, doc/indices.texi, doc/version.texi: New file.