Andy-2639

Results 18 comments of Andy-2639

Certificates I use for persons look like this: ``` X509v3 Basic Constraints: CA:FALSE X509v3 Subject Key Identifier: 9F:***:CD X509v3 Authority Key Identifier: keyid:D7:***:0B X509v3 Key Usage: Digital Signature, Key Encipherment...

> Don't you have any errors in the log? No, there are no errors in the log. The ejabberd logs are in logs_pcaps.zip "ejabberd [tcp/udp] v[4/6].log". For every protocol combination,...

Neighter ```yaml listen: - ip: "0.0.0.0" port: 5060 transport: udp module: ejabberd_sip - ip: "::" port: 65060 transport: udp module: ejabberd_sip - ip: "0.0.0.0" port: 5060 module: ejabberd_sip - ip:...

I tested SIP with IPv6 again with ejabberd 17.08. It still fails. The logs of phonerlite and ejabberd and the complete ejabberd configuration is in the zip: [logs_config.zip](https://github.com/processone/ejabberd/files/1254233/logs_config.zip) SIP with...

@aylesm I don't really understand your answer. > I see packets arrive at ejabberd and they are logged. I don’t see a response on the client or even in the...

I'm going to look into adding a JNI interface. The Extension I want to load is a slightly modified version of sqlite3_icu. (I renamed the function names so that the...

I created PR #319 . I wrote test cases for loading SQLite extensions. I don't know how to integrate the building of the extension native libraries the best way. This...

A possible solution is to use the `enable_load_extension` method to disable extension loading after loading them. The downcast however isn't ideal. ```java import java.sql.Connection; import java.sql.SQLException; import org.sqlite.SQLiteConfig; import org.sqlite.SQLiteConnection;...

> I found it's relatively easy to do without this change: Yes, it is. It just allows extensions - arbitrary code - to be loaded into your process by normal...

@alun Yeah, https://github.com/xerial/sqlite-jdbc/blob/d4b19c11e1b569cdabce82823a2fad5927df983a/src/main/java/org/sqlite/core/NativeDB.java#L109 should work. However, I don't see it exposed. So I guess when https://github.com/xerial/sqlite-jdbc/blob/d4b19c11e1b569cdabce82823a2fad5927df983a/src/main/java/org/sqlite/SQLiteConnection.java#L25 exposes `enable_load_extension` and https://github.com/xerial/sqlite-jdbc/blob/d4b19c11e1b569cdabce82823a2fad5927df983a/src/main/java/org/sqlite/SQLiteConfig.java#L100 ~~would return a `SQLiteConnection`~~, the following would be possible: 1....