Skip to content
Snippets Groups Projects
Commit e4d62dc2 authored by Alexandre Bourget's avatar Alexandre Bourget
Browse files

Move header requirements (use the globally installed ones)

Use iax/iax-client.h instead of iax-client.h (from libs/libiax2)

Must be fixed, with bug #10
parent 9775d1c9
No related branches found
No related tags found
No related merge requests found
......@@ -29,12 +29,12 @@ class Account;
*/
class AccountCreator{
public:
~AccountCreator();
/**
* Public account type
*/
enum AccountType {SIP_ACCOUNT, IAX_ACCOUNT };
~AccountCreator();
/**
* Public account type
*/
enum AccountType {SIP_ACCOUNT, IAX_ACCOUNT };
/**
* Create a new account or null
* @param type type of the account
......@@ -43,8 +43,8 @@ public:
static Account* createAccount(AccountType type, AccountID accountID);
private:
/** Hidden creator */
AccountCreator();
/** Hidden creator */
AccountCreator();
};
#endif
......@@ -20,7 +20,7 @@
#define IAXCALL_H
#include "call.h"
#include <iax-client.h>
#include <iax/iax-client.h>
/**
* IAXCall are IAX implementation of a normal Call
......
......@@ -26,6 +26,11 @@
#include "audio/audiolayer.h"
#include <samplerate.h>
#include <iax/iax-client.h>
#define IAX_BLOCKING 1
#define IAX_NONBLOCKING 0
#define IAX_SUCCESS 0
#define IAX_FAILURE -1
......@@ -178,7 +183,7 @@ IAXVoIPLink::getEvent()
iax_event* event = NULL;
IAXCall* call = NULL;
while ( (event = iax_get_event(TRUE)) != NULL ) {
while ( (event = iax_get_event(IAX_BLOCKING)) != NULL ) {
//_debug ("Receive IAX Event: %d\n", event->etype);
call = iaxFindCallBySession(event->session);
if (call != 0) {
......
......@@ -20,7 +20,7 @@
#define IAXVOIPLINK_H
#include "voIPLink.h"
#include <iax-client.h>
#include <iax/iax-client.h>
#include "global.h"
......
......@@ -69,7 +69,7 @@
#define CODEC3 "Codecs.codec3"
#define RING_CHOICE "Rings.ringChoice"
#define ACCOUNT_SIP_COUNT_DEFAULT 4
#define ACCOUNT_IAX_COUNT_DEFAULT 1
#define ACCOUNT_IAX_COUNT_DEFAULT 4
// speakers and volume 0 to 100
#define VOLUME_SPKR "Volume.speakers"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment