]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Richiamta manualmente la funzione WSAStartup sotto win32. evolution-data-server-2.32
authorAndrea Zagli <azagli@libero.it>
Sun, 20 Feb 2011 11:50:46 +0000 (12:50 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 20 Feb 2011 11:50:46 +0000 (12:50 +0100)
src/mail.c
src/utils.c
tests/mail.c

index 0c6022378678acc8a53334b66f64d1d2b0bba5bc..033cfb37dba24bdff5ac4e0e96fad87b8395bf4f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
 
 #include "mail.h"
 
+#ifdef G_OS_WIN32
+       #include <winsock2.h>
+#endif
+
 static void solipa_mail_class_init (SolipaMailClass *class);
 static void solipa_mail_init (SolipaMail *solipa_mail);
 
@@ -393,6 +397,34 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
                        return;
                }
 
+#ifdef G_OS_WIN32
+       /* devo richiamare manualmente l'inizializzazione dei socket in windows
+        * perché libcamel non lo fa */
+       WORD wVersionRequested;
+       WSADATA wsaData;
+
+       wVersionRequested = MAKEWORD(2, 2);
+
+       int err = WSAStartup (wVersionRequested, &wsaData);
+
+       if (err != 0)
+               {
+                       /* Tell the user that we could not find a usable */
+                       /* Winsock DLL.                                  */
+                       g_warning ("WSAStartup failed with error: %d", err);
+                       return;
+               }
+
+       if (LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2)
+               {
+                       /* Tell the user that we could not find a usable */
+                       /* WinSock DLL.                                  */
+                       g_warning ("Could not find a usable version of Winsock.dll.");
+                       WSACleanup ();
+                       return;
+               }
+#endif
+
        error = NULL;
        trans = camel_session_get_service (solipa_get_camel_session (priv->solipa), url, CAMEL_PROVIDER_TRANSPORT, &error);
        if (trans == NULL || error != NULL)
@@ -432,6 +464,10 @@ solipa_mail_send (SolipaMail *mail, const gchar *url)
 
 noconnect:
        g_object_unref (trans);
+
+#ifdef G_OS_WIN32
+       WSACleanup ();
+#endif
 }
 
 /* PRIVATE */
index 3042b774dc69d794c9a61edaeaa9685cae1e27a6..ca68a6d42c2667c853790d02cd8c131cb1112d68 100644 (file)
@@ -210,7 +210,7 @@ solipa_gtktreemodel_to_csv (GtkTreeModel *model, const gchar *filename,
 
                        if (fields_name_first_row)
                                {
-                                       /* nomi dei campi come priga riga */
+                                       /* nomi dei campi come prima riga */
                                        row = g_strdup ("");
                                        for (i = 0; i < n_columns; i++)
                                                {
index 26f66737f1e28221d370a25b4e2a07561691aedd..0d7893042c413b9e426392f784c867e4d3dfb9ce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -40,7 +40,7 @@ main (int argc, char **argv)
 
        camel_address_remove (CAMEL_ADDRESS (addr), -1);
 
-       camel_internet_address_add (addr, "tux", "tux@sid-sviluppo.miodominio.it");
+       camel_internet_address_add (addr, "pippo", "pippo@localhost");
        solipa_mail_add_recipient (smail, addr, SOLIPA_MAIL_RECIPIENT_TYPE_TO);
        g_object_unref (addr);
 
@@ -49,7 +49,7 @@ main (int argc, char **argv)
        strmail = solipa_mail_get_as_string (smail);
        g_message ("The email text:\n%s", strmail);
 
-       solipa_mail_send (smail, "smtp://10.0.0.102/");
+       solipa_mail_send (smail, "smtp://localhost/");
 
        return 0;
 }