Results 252 comments of Georg Lukas

That's an awesome idea. I've encountered that problem myself in yaxim, where the connection times out after some inactivity and a new one is opened. I estimate that this needs...

This really looks like a multi-process issue to me. Initially I thought it might be a problem with multi-threaded access to `openDecisions`, but reading and writing on that structure is...

MTM starts its UI by means of a startActivity call that is posted to the [original Context's getMainLooper()](https://github.com/ge0rg/MemorizingTrustManager/blob/master/src/de/duenndns/ssl/MemorizingTrustManager.java#L140): https://github.com/ge0rg/MemorizingTrustManager/blob/master/src/de/duenndns/ssl/MemorizingTrustManager.java#L652-L670 I could imagine that for the davdroid:sync process, this leads to...

This is an interesting approach. I have outlined a possible API for exchanging the MTM user interface in #29, but this looks like it aims at doing the opposite. May...

Hi, the default example in the repository's `example` directory is using HttpsURLConnection, and there are no known issues with the "Cancel" button. I just verified that on Android6. Can you...

To be honest, I wasn't even aware that this is a problem, and I have no idea what the cause is. I had the hope to bring #29 into a...

This is a hard problem. There are several sides of it to consider: 1. **technical**: the Java API for [TrustManager](http://developer.android.com/reference/javax/net/ssl/X509TrustManager.html) does not allow to see the server name/address/service name of...

I am not quite sure if it is useful to "dig deep" and to follow the chain to the last element, or if we might lose information that way. If...

1. Do you want the callbacks to happen on your UI thread or on your network thread? 2. Does [X509Certificate](http://developer.android.com/reference/javax/security/cert/X509Certificate.html)[] qualify as fully parsed? What kind of data structure do...

For (1) I suppose "UI thread" is the right thing. Currently, I'm getting an Android Handler reference from `context.getMainLooper()` to run my UI code on - that might be "good...