Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Oct 10, 2024
1 parent cd613e8 commit 425891e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dm_jabber.f90
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module dm_jabber
!! rc = dm_jabber_connect(jabber = jabber, &
!! host = 'example.com', &
!! port = JABBER_PORT, &
!! jid = '[email protected]',
!! jid = '[email protected]', &
!! password = 'secret', &
!! callback = connection_callback, &
!! user_data = c_loc(jabber), &
Expand Down Expand Up @@ -243,7 +243,7 @@ integer function dm_jabber_connect(jabber, host, port, jid, password, callback,
character(len=*), intent(in) :: password !! JID account password.
procedure(dm_jabber_connection_callback) :: callback !! Jabber connection handler.
type(c_ptr), intent(in), optional :: user_data !! C pointer to user data.
character(len=*), intent(in), optional :: resource !! Optional resource (`<jid>@<domain>/<resource>`.
character(len=*), intent(in), optional :: resource !! Optional resource (`<jid>@<domain>/<resource>`).
logical, intent(in), optional :: keep_alive !! Enable TCP Keep Alive.
logical, intent(in), optional :: tls_required !! TLS is mandatory.
logical, intent(in), optional :: tls_trusted !! Trust TLS certificate.
Expand Down

0 comments on commit 425891e

Please sign in to comment.