NeoMutt  2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
mutt_socket.h
Go to the documentation of this file.
1
23#ifndef MUTT_MUTT_SOCKET_H
24#define MUTT_MUTT_SOCKET_H
25
26struct ConnAccount;
27
28struct Connection *mutt_conn_find(const struct ConnAccount *account);
29struct Connection *mutt_conn_new (const struct ConnAccount *account);
30
31#endif /* MUTT_MUTT_SOCKET_H */
struct Connection * mutt_conn_find(const struct ConnAccount *account)
Find a connection from a list.
Definition: mutt_socket.c:89
struct Connection * mutt_conn_new(const struct ConnAccount *account)
Create a new Connection.
Definition: mutt_socket.c:48
Login details for a remote server.
Definition: connaccount.h:53
struct ConnAccount account
Account details: username, password, etc.
Definition: connection.h:50