Revision 1785
| trunk/nntpgrab_core/nntpconnection.c (revision 1785) | ||
|---|---|---|
| 1193 | 1193 |
return retval; |
| 1194 | 1194 |
} |
| 1195 | 1195 |
|
| 1196 |
#define GNUTLS_CHECK_VERSION(major,minor,micro) \ |
|
| 1197 |
(GNUTLS_VERSION_MAJOR > (major) || \ |
|
| 1198 |
(GNUTLS_VERSION_MAJOR == (major) && GNUTLS_VERSION_MINOR > (minor)) || \ |
|
| 1199 |
(GNUTLS_VERSION_MAJOR == (major) && GNUTLS_VERSION_MINOR == (minor) && \ |
|
| 1200 |
GNUTLS_VERSION_MICRO >= (micro))) |
|
| 1201 |
|
|
| 1196 | 1202 |
static gboolean |
| 1197 | 1203 |
prepare_gnutls_connection(NNTPConnectionInfo *conn, char **errmsg) |
| 1198 | 1204 |
{
|
| ... | ... | |
| 1212 | 1218 |
gnutls_init (&conn->ssl_session, GNUTLS_CLIENT); |
| 1213 | 1219 |
|
| 1214 | 1220 |
/* Use default priorities */ |
| 1221 |
#if GNUTLS_CHECK_VERSION(2,1,7) |
|
| 1215 | 1222 |
gnutls_priority_set_direct (conn->ssl_session, "PERFORMANCE:+ANON-DH:!ARCFOUR-128", NULL); |
| 1223 |
#endif |
|
| 1216 | 1224 |
|
| 1217 | 1225 |
/* put the anonymous credentials to the current session */ |
| 1218 | 1226 |
gnutls_certificate_allocate_credentials(&cred); |
| trunk/ChangeLog (revision 1785) | ||
|---|---|---|
| 6 | 6 |
| NNTPGrab 0.6.91 | |
| 7 | 7 |
+-----------------+ |
| 8 | 8 |
|
| 9 |
Released at Tuesday December 7 2010 |
|
| 9 |
Released at Wednesday December 8 2010 |
|
| 10 | 10 |
|
| 11 | 11 |
General changes: |
| 12 | 12 |
- Made the Qt frontend the default frontend for Win32, Win64 and OSX environments |
| trunk/client/Makefile.am (revision 1785) | ||
|---|---|---|
| 17 | 17 |
gui_qt/updateqm.pri \ |
| 18 | 18 |
gui_qt/nntpgrab_qt.desktop \ |
| 19 | 19 |
gui_qt/QNNTPGrabResources.qrc \ |
| 20 |
gui_qt/main.cpp \ |
|
| 21 |
gui_qt/mainwindow.cpp \ |
|
| 22 |
gui_qt/mainwindow.h \ |
|
| 23 |
gui_qt/QNNTPGrabGlue.cpp \ |
|
| 24 |
gui_qt/QNNTPGrabGlue.h \ |
|
| 20 |
gui_qt/AutoImport.cpp \ |
|
| 21 |
gui_qt/AutoImport.h \ |
|
| 22 |
gui_qt/ConfigGuiOpts.cpp \ |
|
| 23 |
gui_qt/ConfigGuiOpts.h \ |
|
| 25 | 24 |
gui_qt/DialogAddServer.cpp \ |
| 26 | 25 |
gui_qt/DialogAddServer.h \ |
| 27 | 26 |
gui_qt/DialogConnect.cpp \ |
| ... | ... | |
| 32 | 31 |
gui_qt/DialogManagePlugins.h \ |
| 33 | 32 |
gui_qt/DialogSetCollectionName.cpp \ |
| 34 | 33 |
gui_qt/DialogSetCollectionName.h \ |
| 34 |
gui_qt/DownloadQueueItem.cpp \ |
|
| 35 |
gui_qt/DownloadQueueItem.h \ |
|
| 36 |
gui_qt/DownloadQueueModel.cpp \ |
|
| 37 |
gui_qt/DownloadQueueModel.h \ |
|
| 38 |
gui_qt/DownloadQueueSelectionModel.cpp \ |
|
| 39 |
gui_qt/DownloadQueueSelectionModel.h \ |
|
| 35 | 40 |
gui_qt/FormDebug.cpp \ |
| 36 | 41 |
gui_qt/FormDebug.h \ |
| 42 |
gui_qt/main.cpp \ |
|
| 43 |
gui_qt/mainwindow.cpp \ |
|
| 44 |
gui_qt/mainwindow.h \ |
|
| 37 | 45 |
gui_qt/ProgressBarDelegate.cpp \ |
| 38 |
gui_qt/ProgressBarDelegate.h \ |
|
| 39 | 46 |
gui_qt/ProgressBarDelegateDownloadQueue.cpp \ |
| 40 | 47 |
gui_qt/ProgressBarDelegateDownloadQueue.h \ |
| 48 |
gui_qt/ProgressBarDelegate.h \ |
|
| 49 |
gui_qt/ProgressBarDelegatePAR2AndUnpack.cpp \ |
|
| 50 |
gui_qt/ProgressBarDelegatePAR2AndUnpack.h \ |
|
| 51 |
gui_qt/QNNTPGrabGlue.cpp \ |
|
| 52 |
gui_qt/QNNTPGrabGlue.h \ |
|
| 53 |
gui_qt/QNNTPGrabGlue_p.h \ |
|
| 54 |
gui_qt/QNZBCreator.cpp \ |
|
| 55 |
gui_qt/QNZBCreator.h \ |
|
| 41 | 56 |
gui_qt/WidgetConfigAutoImport.cpp \ |
| 42 | 57 |
gui_qt/WidgetConfigAutoImport.h \ |
| 43 | 58 |
gui_qt/WidgetConfig.cpp \ |
| 44 |
gui_qt/WidgetConfig.h \ |
|
| 45 | 59 |
gui_qt/WidgetConfigDisplay.cpp \ |
| 46 | 60 |
gui_qt/WidgetConfigDisplay.h \ |
| 47 | 61 |
gui_qt/WidgetConfigFolders.cpp \ |
| 48 | 62 |
gui_qt/WidgetConfigFolders.h \ |
| 63 |
gui_qt/WidgetConfig.h \ |
|
| 49 | 64 |
gui_qt/WidgetConfigNotifications.cpp \ |
| 50 | 65 |
gui_qt/WidgetConfigNotifications.h \ |
| 51 | 66 |
gui_qt/WidgetConfigNZBCreator.cpp \ |
Also available in: Unified diff
NNTPGrab

