pidgin/pidgin

simple: Convert TCP listener to gio.

2020-05-16, Elliott Sales de Andrade
c010c54a719d
simple: Convert TCP listener to gio.

Note, this no longer defaults to a fixed range of ports (5060-5160), but
that appears unnecessary. The SIP RFC3261 says that 5060 is the default
if a port is not specified, but we always include our port in the Via
header. Thus there's no reason to restrict ports to any particular
range.
#ifndef PIDGIN_ABOUT_H
#define PIDGIN_ABOUT_H
/**
* SECTION:pidginabout
* @section_id: pidgin-about
* @short_description: <filename>pidginabout.h</filename>
* @title: About Dialog
*/
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define PIDGIN_TYPE_ABOUT_DIALOG (pidgin_about_dialog_get_type())
G_DECLARE_FINAL_TYPE(PidginAboutDialog, pidgin_about_dialog, PIDGIN,
ABOUT_DIALOG, GtkDialog)
GtkWidget *pidgin_about_dialog_new(void);
G_END_DECLS
#endif /* PIDGIN_ABOUT_H */