-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd613e8
commit 425891e
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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), & | ||
|
@@ -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. | ||
|