Recommendation for a PHP sip client class #sip client
Edit
by Jay Mali - 4 years ago (2020-11-13)
I need SIP2 script to run with using the TLS 1.2 protocol
| I am using SSL connection to connecting to the sip2 server but now the server upgraded to require TLS 1.2.
We use this below class (sip2.class.php) to connect SIP2 server and that class uses SSL connect. Any suggestion on how will connect using TLS 1.2 with below script using PHP?
https://github.com/the-codepunker/php-sip2/blob/master/sip2.class.php
|
- 2 Clarification requests
2.
by adam berger - 4 years ago (2020-11-16) Reply
stream_socket_client ('tlsv1.2: //'.$host.': '. $ port, $ errno,
$ errstr, 30, STREAM_CLIENT_CONNECT, $ context)
1.
by Manuel Lemos - 4 years ago (2020-11-14) Reply
It seems you need a more modern class that forces a TLS 1.2 SSL connection.
Ask clarification
1 Recommendation
POP3 e-mail client: Access to e-mail mailboxes using the POP3 protocol
The class implements access to mailboxes using the POP3 protocol.
It features:
- Support secure connections using TLS
- Provides a stream wrapper class to access messages like files using fopen('pop3://user:pass@localhost/1', 'r');
- POP3 server access using standard and APOP login methods
- Authentication mechanisms implemented by SASL client classes like PLAIN, LOGIN, CRAM-MD5, NTLM (Windows or Linux/Unix via Samba), XOAUTH2, etc...
- Determining mailbox statistics (mailbox size in bytes and the number of stored messages)
- Listing of individual message sizes and identifier numbers
- Retrieving messages in data blocks of limited size to not exceed the available memory
- Retrieving messages all at once, separating the headers from the body, and limiting the number of message lines that it may retrieve at once
- Marking messages to be deleted
- Resetting the list of messages to be deleted
- Issuing of protocol NOOP command to avoid connection shutdown while in an idle state
| by adam berger 60 - 4 years ago (2020-11-16) Comment
here is the problem of the connection itself, if the license allows, you can add such connections yourself, e.g.
stream_socket_client ('tlsv1.2: //'.$host.': '. $ port, $ errno,
$ errstr, 30, STREAM_CLIENT_CONNECT, $ context)
|