#include <glib.h>
#include "line.h"
Go to the source code of this file.
Data Structures | |
struct | irc_transport_callbacks |
struct | irc_transport |
Functions | |
struct irc_transport * | irc_transport_new_iochannel (GIOChannel *iochannel) |
void | irc_transport_disconnect (struct irc_transport *transport) |
void | free_irc_transport (struct irc_transport *) |
gboolean | transport_set_charset (struct irc_transport *transport, const char *name) |
Change the character set used to send data to a client. | |
gboolean | transport_send_line (struct irc_transport *transport, const struct irc_line *) |
gboolean | transport_send_args (struct irc_transport *transport,...) |
void | transport_parse_buffer (struct irc_transport *transport) |
void | irc_transport_set_callbacks (struct irc_transport *transport, const struct irc_transport_callbacks *callbacks, void *userdata) |
gboolean transport_set_charset | ( | struct irc_transport * | transport, | |
const char * | name | |||
) |
Change the character set used to send data to a client.
c | client to change the character set for | |
name | name of the character set to change to |