pidgin 2.14.14dev
internal.h File Reference

Internal definitions and includes. More...

#include <locale.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <gmodule.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/un.h>
#include <sys/utsname.h>
#include <netdb.h>
#include <signal.h>
#include <unistd.h>
#include <glib.h>
#include "glibcompat.h"
#include <glib/gstdio.h>
#include <glib-object.h>
#include "account.h"
#include "connection.h"
Include dependency graph for internal.h:

Go to the source code of this file.

Data Structures

union  common_sockaddr_t
 

Macros

#define N_(String)   (String)
 
#define _(String)   ((const char *)String)
 
#define ngettext(Singular, Plural, Number)   ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))
 
#define dngettext(Domain, Singular, Plural, Number)   ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))
 
#define MSG_LEN   2048
 
#define BUF_LEN   MSG_LEN
 
#define BUF_LONG   BUF_LEN * 2
 
#define HOST_NAME_MAX   255
 
#define purple_strlcpy(dest, src)   g_strlcpy(dest, src, sizeof(dest))
 
#define purple_strlcat(dest, src)   g_strlcat(dest, src, sizeof(dest))
 
#define PURPLE_WEBSITE   "https://pidgin.im/"
 
#define PURPLE_DEVEL_WEBSITE   "https://pidgin.im/development/"
 

Functions

void _purple_buddy_icons_account_loaded_cb (void)
 
void _purple_buddy_icons_blist_loaded_cb (void)
 
void _purple_buddy_icon_set_old_icons_dir (const char *dirname)
 
void _purple_connection_new (PurpleAccount *account, gboolean regist, const char *password)
 Creates a connection to the specified account and either connects or attempts to register a new account. More...
 
void _purple_connection_new_unregister (PurpleAccount *account, const char *password, PurpleAccountUnregistrationCb cb, void *user_data)
 Tries to unregister the account on the server. More...
 
void _purple_connection_destroy (PurpleConnection *gc)
 Disconnects and destroys a PurpleConnection. More...
 
gboolean _purple_network_set_common_socket_flags (int fd)
 Sets most commonly used socket flags: O_NONBLOCK and FD_CLOEXEC. More...
 

Detailed Description

Internal definitions and includes.

Definition in file internal.h.

Macro Definition Documentation

◆ _

#define _ (   String)    ((const char *)String)

Definition at line 61 of file internal.h.

◆ BUF_LEN

#define BUF_LEN   MSG_LEN

Definition at line 75 of file internal.h.

◆ BUF_LONG

#define BUF_LONG   BUF_LEN * 2

Definition at line 76 of file internal.h.

◆ dngettext

#define dngettext (   Domain,
  Singular,
  Plural,
  Number 
)    ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))

Definition at line 64 of file internal.h.

◆ HOST_NAME_MAX

#define HOST_NAME_MAX   255

Definition at line 122 of file internal.h.

◆ MSG_LEN

#define MSG_LEN   2048

Definition at line 71 of file internal.h.

◆ N_

#define N_ (   String)    (String)

Definition at line 59 of file internal.h.

◆ ngettext

#define ngettext (   Singular,
  Plural,
  Number 
)    ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural))

Definition at line 63 of file internal.h.

◆ PURPLE_DEVEL_WEBSITE

#define PURPLE_DEVEL_WEBSITE   "https://pidgin.im/development/"

Definition at line 170 of file internal.h.

◆ purple_strlcat

#define purple_strlcat (   dest,
  src 
)    g_strlcat(dest, src, sizeof(dest))

Definition at line 159 of file internal.h.

◆ purple_strlcpy

#define purple_strlcpy (   dest,
  src 
)    g_strlcpy(dest, src, sizeof(dest))

Definition at line 158 of file internal.h.

◆ PURPLE_WEBSITE

#define PURPLE_WEBSITE   "https://pidgin.im/"

Definition at line 169 of file internal.h.

Function Documentation

◆ _purple_connection_destroy()

void _purple_connection_destroy ( PurpleConnection gc)

Disconnects and destroys a PurpleConnection.

Note
This function should only be called by purple_account_disconnect() in account.c. If you're trying to sign off an account, use that function instead.
Parameters
gcThe purple connection to destroy.

◆ _purple_connection_new()

void _purple_connection_new ( PurpleAccount account,
gboolean  regist,
const char *  password 
)

Creates a connection to the specified account and either connects or attempts to register a new account.

If you are logging in, the connection uses the current active status for this account. So if you want to sign on as "away," for example, you need to have called purple_account_set_status(account, "away"). (And this will call purple_account_connect() automatically).

Note
This function should only be called by purple_account_connect() in account.c. If you're trying to sign on an account, use that function instead.
Parameters
accountThe account the connection should be connecting to.
registWhether we are registering a new account or just trying to do a normal signon.
passwordThe password to use.

◆ _purple_connection_new_unregister()

void _purple_connection_new_unregister ( PurpleAccount account,
const char *  password,
PurpleAccountUnregistrationCb  cb,
void *  user_data 
)

Tries to unregister the account on the server.

If the account is not connected, also creates a new connection.

Note
This function should only be called by purple_account_unregister() in account.c.
Parameters
accountThe account to unregister
passwordThe password to use.
cbOptional callback to be called when unregistration is complete
user_datauser data to pass to the callback

◆ _purple_network_set_common_socket_flags()

gboolean _purple_network_set_common_socket_flags ( int  fd)

Sets most commonly used socket flags: O_NONBLOCK and FD_CLOEXEC.

Parameters
fdThe file descriptor for the socket.
Returns
TRUE if succeeded, FALSE otherwise.