X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=endpoint.cpp;h=1dce9f167d04586091ae6a1cfb823e2c8eb760e2;hp=e0f6365bb3482959b55955a5dbf490c566313e22;hb=d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4;hpb=cbe9d412a37e75b61cc74e8a65b0293923eb5160 diff --git a/endpoint.cpp b/endpoint.cpp index e0f6365..1dce9f1 100644 --- a/endpoint.cpp +++ b/endpoint.cpp @@ -9,10 +9,9 @@ ** ** \*****************************************************************************/ -#include #include "main.h" -unsigned long epoint_serial = 1; /* initial value must be 1, because 0== no epoint */ +unsigned int epoint_serial = 1; /* initial value must be 1, because 0== no epoint */ class Endpoint *epoint_first = NULL; @@ -20,7 +19,7 @@ class Endpoint *epoint_first = NULL; /* * find the epoint with epoint_id */ -class Endpoint *find_epoint_id(unsigned long epoint_id) +class Endpoint *find_epoint_id(unsigned int epoint_id) { class Endpoint *epoint = epoint_first; @@ -39,7 +38,7 @@ class Endpoint *find_epoint_id(unsigned long epoint_id) /* * endpoint constructor (link with either port or join id) */ -Endpoint::Endpoint(unsigned long port_id, unsigned long join_id) +Endpoint::Endpoint(unsigned int port_id, unsigned int join_id) { class Port *port; class Endpoint **epointpointer; @@ -139,7 +138,7 @@ Endpoint::~Endpoint(void) /* create new portlist relation */ -struct port_list *Endpoint::portlist_new(unsigned long port_id, int port_type, int earlyb) +struct port_list *Endpoint::portlist_new(unsigned int port_id, int port_type, int earlyb) { struct port_list *portlist, **portlistpointer;