You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.7 KiB
94 lines
2.7 KiB
/*
|
|
Kopete Oscar Protocol
|
|
oscarutils.h - Oscar Utility Functions
|
|
|
|
Copyright (c) 2004 Matt Rogers <mattr@kde.org>
|
|
|
|
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
|
|
|
|
*************************************************************************
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#ifndef _OSCARUTILS_H_
|
|
#define _OSCARUTILS_H_
|
|
|
|
#include <qglobal.h>
|
|
#include <qvaluelist.h>
|
|
#include <qstring.h>
|
|
#include "oscartypes.h"
|
|
#include "buffer.h"
|
|
|
|
namespace Oscar
|
|
{
|
|
|
|
///Normalize the contact name to all lowercase and no spaces
|
|
KOPETE_EXPORT QString normalize( const QString& );
|
|
|
|
///compare TLVs for equality
|
|
KOPETE_EXPORT bool operator==( TLV, TLV );
|
|
|
|
/**
|
|
* Find the TLV corresponding to the type in the list
|
|
*/
|
|
KOPETE_EXPORT TLV findTLV( const QValueList<TLV>&, int type );
|
|
|
|
/**
|
|
* Update TLVs of SSI item from TLV list if necessary
|
|
* \return true if something was updated
|
|
*/
|
|
KOPETE_EXPORT bool uptateTLVs( SSI& item, const QValueList<TLV>& list );
|
|
|
|
/**
|
|
* Get the value of the capability that corresponds to the value
|
|
* in the Capabilities enum
|
|
* \return -1 if the capability isn't found
|
|
* \return a non-negative number corresponding to the value of the
|
|
* capability in the Capabilities enum
|
|
*/
|
|
int parseCap( char* cap );
|
|
|
|
/**
|
|
* Convert the capability to a string we can print
|
|
*/
|
|
const QString capToString(char *cap);
|
|
|
|
/**
|
|
* Parse the character array for validness and a version string
|
|
* \param buffer the buffer we'll be parsing for capabilities
|
|
* \param versionString a QString reference that will contain the
|
|
* version string of the detected client. Will be QString::null if
|
|
* no client is found
|
|
* \return a DWORD containg a bit array of the capabilities we found
|
|
*/
|
|
DWORD parseCapabilities(Buffer &inbuf, QString &versionString);
|
|
|
|
/**
|
|
* Get the name of the capability from its number
|
|
*/
|
|
const QString capName( int capNumber );
|
|
|
|
/**
|
|
* Convert an IP address in dotted decimal notation to a
|
|
* numerical constant
|
|
*/
|
|
DWORD getNumericalIP( const QString& address );
|
|
|
|
/**
|
|
* Convert a numerical constant that is an IP address to
|
|
* dotted decimal format
|
|
*/
|
|
QString getDottedDecimal( DWORD address );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
//kate: auto-insert-doxygen on; tab-width 4; indent-mode csands;
|