X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=endpoint.h;h=a336beb97ac741f8fe56ff1a178c8fc7142ce6e0;hp=744f3ea72bc304c01b3f6ebd4db1e96ecf99da2d;hb=cbe9d412a37e75b61cc74e8a65b0293923eb5160;hpb=e9daaa4ef7ee895e6a8610ebb2166cc99c891a4e diff --git a/endpoint.h b/endpoint.h index 744f3ea..a336beb 100644 --- a/endpoint.h +++ b/endpoint.h @@ -1,6 +1,6 @@ /*****************************************************************************\ ** ** -** PBX4Linux ** +** Linux Call Router ** ** ** **---------------------------------------------------------------------------** ** Copyright: Andreas Eversberg ** @@ -22,7 +22,7 @@ struct port_list { class Endpoint { public: - Endpoint(int port_id, int call_id); + Endpoint(unsigned long port_id, unsigned long join_id); ~Endpoint(); class Endpoint *next; /* next in list */ unsigned long ep_serial; /* a unique serial to identify */ @@ -36,8 +36,8 @@ class Endpoint struct port_list *portlist_new(unsigned long port_id, int port_type, int earlyb); void free_portlist(struct port_list *portlist); - /* call relation */ - unsigned long ep_call_id; /* link to call */ + /* join relation */ + unsigned long ep_join_id; /* link to join */ /* if still used by threads */ int ep_use;