#ifndef JINGLE_NOTIFIER_BASE_SERVER_INFORMATION_H_
#define JINGLE_NOTIFIER_BASE_SERVER_INFORMATION_H_
#include <vector>
#include "net/base/host_port_pair.h"
namespace notifier {
enum SslTcpSupport { DOES_NOT_SUPPORT_SSLTCP, SUPPORTS_SSLTCP };
struct ServerInformation {
ServerInformation(const net::HostPortPair& server,
SslTcpSupport ssltcp_support);
ServerInformation();
~ServerInformation();
bool Equals(const ServerInformation& other) const;
net::HostPortPair server;
SslTcpSupport ssltcp_support;
};
typedef std::vector<ServerInformation> ServerList;
}
#endif