Mercurial > pidgin.yaz
view libpurple/plugins/mono/api/Buddy.cs @ 22034:d63892ade0a6
Now checking the hostname supplied by the user, or the host-part of the JID when no host name is given against the CN of the domain. This makes libpurple comply to the RFC. Fixes http://trac.adiumx.com/ticket/8787
author | Andreas Monitzer <pidgin@monitzer.com> |
---|---|
date | Tue, 08 Jan 2008 00:22:48 +0000 |
parents | 93bfbda79bf6 |
children |
line wrap: on
line source
namespace Purple { public class Buddy : BlistNode { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }