NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_socket.h File Reference

NeoMutt connections. More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

struct Connectionmutt_conn_find (const struct ConnAccount *account)
 Find a connection from a list.
 
struct Connectionmutt_conn_new (const struct ConnAccount *account)
 Create a new Connection.
 

Detailed Description

NeoMutt connections.

Authors
  • Brendan Cully
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file mutt_socket.h.

Function Documentation

◆ mutt_conn_find()

struct Connection * mutt_conn_find ( const struct ConnAccount cac)

Find a connection from a list.

Parameters
cacConnAccount to match
Return values
ptrMatching Connection

find a connection off the list of connections whose account matches cac. If start is not null, only search for connections after the given connection (allows higher level socket code to make more fine-grained searches than account info. Eg in IMAP we may wish to find a connection which is not in IMAP_SELECTED state)

Definition at line 90 of file mutt_socket.c.

91{
92 struct Url url = { 0 };
93 char hook[1024] = { 0 };
94
95 /* cac isn't actually modified, since url isn't either */
96 mutt_account_tourl((struct ConnAccount *) cac, &url);
97 url.path = NULL;
98 url_tostring(&url, hook, sizeof(hook), U_NO_FLAGS);
100
101 return mutt_conn_new(cac);
102}
void mutt_account_hook(const char *url)
Perform an account hook.
Definition: hook.c:879
void mutt_account_tourl(struct ConnAccount *cac, struct Url *url)
Fill URL with info from account.
Definition: mutt_account.c:80
struct Connection * mutt_conn_new(const struct ConnAccount *cac)
Create a new Connection.
Definition: mutt_socket.c:49
Login details for a remote server.
Definition: connaccount.h:53
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition: url.h:69
char * path
Path.
Definition: url.h:75
int url_tostring(struct Url *url, char *dest, size_t len, uint8_t flags)
Output the URL string for a given Url object.
Definition: url.c:423
#define U_NO_FLAGS
Definition: url.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_conn_new()

struct Connection * mutt_conn_new ( const struct ConnAccount cac)

Create a new Connection.

Parameters
cacCredentials to use
Return values
ptrNew Connection

Definition at line 49 of file mutt_socket.c.

50{
51 enum ConnectionType conn_type;
52
53 const char *const c_tunnel = cs_subset_string(NeoMutt->sub, "tunnel");
54 if (c_tunnel)
55 conn_type = MUTT_CONNECTION_TUNNEL;
56 else if (cac->flags & MUTT_ACCT_SSL)
57 conn_type = MUTT_CONNECTION_SSL;
58 else
59 conn_type = MUTT_CONNECTION_SIMPLE;
60
61 struct Connection *conn = mutt_socket_new(conn_type);
62 if (conn)
63 {
64 memcpy(&conn->account, cac, sizeof(struct ConnAccount));
65 }
66 else
67 {
68 if (conn_type == MUTT_CONNECTION_SSL)
69 {
70#ifndef USE_SSL
71 /* that's probably why it failed */
72 mutt_error(_("SSL is unavailable, can't connect to %s"), cac->host);
73#endif
74 }
75 }
76 return conn;
77}
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
Definition: helpers.c:292
#define MUTT_ACCT_SSL
Account uses SSL/TLS.
Definition: connaccount.h:47
#define mutt_error(...)
Definition: logging2.h:92
#define _(a)
Definition: message.h:28
struct Connection * mutt_socket_new(enum ConnectionType type)
Allocate and initialise a new connection.
Definition: socket.c:272
ConnectionType
Type of connection.
Definition: socket.h:35
@ MUTT_CONNECTION_SSL
SSL/TLS-encrypted connection.
Definition: socket.h:38
@ MUTT_CONNECTION_SIMPLE
Simple TCP socket connection.
Definition: socket.h:36
@ MUTT_CONNECTION_TUNNEL
Tunnelled connection.
Definition: socket.h:37
char host[128]
Server to login to.
Definition: connaccount.h:54
MuttAccountFlags flags
Which fields are initialised, e.g. MUTT_ACCT_USER.
Definition: connaccount.h:60
struct ConnAccount account
Account details: username, password, etc.
Definition: connection.h:49
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
+ Here is the call graph for this function:
+ Here is the caller graph for this function: