source: trunk/FACT++/dim/README_v19.txt@ 13799

Last change on this file since 13799 was 13339, checked in by tbretz, 12 years ago
Updated to v19r31
File size: 27.8 KB
Line 
1
2 DIM version 19.31 Release Notes
3
4Notes 1 and 2 for Unix Users only
5NOTE 1: In order to "make" DIM two environment variables should be set:
6 OS = one of {HP-UX, AIX, OSF1, Solaris, SunOS, LynxOS, Linux, Darwin}
7 DIMDIR = the path name of DIM's top level directory
8 The user should then go to DIM's top level directory and do:
9 > source .setup
10 > gmake all
11 Or, if there is no support for C++ on the machine:
12 > gmake CPP=no all
13
14NOTE 2: The Name Server (Dns), DID, servers and clients (if running in
15 background) should be started whith the output redirected to a
16 logfile ex:
17 Dns </dev/null >& dns.log &
18
19NOTE 3: The Version Number service provided by servers is now set to 1931.
20
2130/03/2012
22Changes for version 19.31:
23 - changed dna_write to dna_write_nowait for servers when removing a service and for clients
24 when releasing and subscribing to a service. Dna_write cannot be used for the same connection
25 as dna_write_nowait as it will mingle the packets.
26 - Removed more compiler warnings.
27
2814/03/2012
29Changes for version 19.30:
30 - Sometimes when trying to open a connection to a server the client could backoff for too
31 long (10 seconds), now it will retry immediately and then at increasing intervals.
32 - dim_stop() would sometimes not properly stop all threads if a new connection was received
33 in the mean time.
34 - The DimServerDns destructor could crash, fixed.
35 - Removed some compiler warnings about variables set but not used.
36 - Two new functions available:
37 - dim_set_listen_backlog(int size)
38 - int dim_get_listen_backlog()
39 - The DNS will set the listen_backlog to 1024 at startup, but the OS will truncate it to
40 a maximum limit (available in /proc/sys/net/core/somaxconn, linux default=128),
41 while for servers the constant SOMAXCONN is used.
42
43
4406/02/2012
45Changes for version 19.28:
46 - Added more log messages when a "Write Timeout" occurs to know where it originated.
47 - A server could sometimes not release the connection in case of a "Write Timeout", and
48 then keep on timing out for each message on this connection - fixed.
49
50
5119/01/2012
52Changes for version 19.27:
53 - Updated the DIM Makefiles for MacOSX (Darwin)
54 - Added New possibilities to change DIM timeouts:
55 - 2 New Environment variables:
56 - DIM_WRITE_TMOUT (default: 5)
57 - DIM_KEEPALIVE_TMOUT (default: 15)
58 - Same functionality as the functions:
59 - dim_set_write_timeout(int secs)
60 - int dim_get_write_timeout()
61 - dim_set_keepalive_timeout(int secs) //new
62 - int dim_get_keepalive_timeout() //new
63 - The functions have precedence over the environment variables.
64 - The server per client exit_handler functionality
65 (provided by dis_add_client_exit_handler()/dis_set_client_exit_handler())
66 wan not always working correctly (in case of write timeouts) - fixed.
67 - Changed the reporting of "Write Tiemout":
68 - Used to report only:
69 - "ERROR: Write Timeout, disconnecting from..."
70 - Now reports:
71 - "WARNING: Write Timeout, writing to ..."
72 - If it disconnects: "ERROR: Write Timeout, disconnecting from ..."
73 - If it reconnects later: "INFO: Re-connected to ..."
74
75
7614/09/2011
77Changes for version 19.26:
78 - In the notes for version 19.08 there is the following:
79 - Since version v18r4 where dim_wait() was modified, dim_wait could hang in windows if
80 the wake_up event was triggered before dim_wait was called. Could affect smi++. Fixed.
81 - Amasingly enough this seems also to be the case for Linux, dim_wait could hang until there
82 was some new DIM activity, normally some timer firing... Fixed.
83 - The Linux DID now accepts an extra parameter: -dns=<dns_node_name>
84
8501/09/2011
86Changes for version 19.25:
87 - When a Client was releasing a service "at the same time" as the server was deleting the service,
88 The Connection could be released by mistake - fixed.
89 - The SERVICE_LIST service could be updated with an empty string if there were two consecutive
90 dis_start_serving() - fixed.
91
92
9308/08/2011
94Changes for version 19.24:
95 - The funtion DimInfo::getFormat() never return the correct format of a service, if the first time
96 it was called, the service was not available, i.e. when called inside a "no_link" callback - Fixed.
97 - Deleting the last service of a server or stopping a server could generate "Invalid Service Id"
98 messages from the service that updates DID - Fixed.
99
100
10115/07/2011
102Changes for version 19.23:
103 - The new functions:
104 int DimClient::inCallback()
105 int DimServer::inCallback()
106 Can be used to find out if the function is being called in the context of a DIM callback
107 handler (they return 1 if yes, 0 if no).
108 - There was no way to "remove" an errorHandler or exitHandler in C++.
109 Now the following functions accept 0 as parameter:
110 DimClient::addErrorHandler(0)
111 DimServer::addErrorHandler(0)
112 DimServer::addExitHandler(0)
113 DimServer::addClientExitHandler(0)
114 In order to remove them.
115 - The Windows Visual Studio Manifest file distributed since version v19r19 was wrong, so the latest
116 DIM versions did not work on Windows machines without Visual Studio 8 installed - Fixed.
117
118
11921/06/2011
120Changes for version 19.22:
121 - DIM servers would hang when tring to exit due to "Services already declared", if the user
122 exitHandler() didn't directly call exit (instead tried to exit later in the main program).
123 Fixed.
124 - Servers accept now also 'B' or 'V' as format, they are both equivalent to 'C'.
125 - In Linux when a server printed "Write timeout, disconecting from XXX", it didn't always
126 disconnect properly, so the client would not always reconnect afterwards. Fixed.
127
128
12931/05/2011
130Changes for version 19.21:
131 - Fixed a bug in DimRpcInfo: the timer for the timeout was started too late and sometimes the
132 RPC data was received in the meantime, so the timer was never stopped.
133
134
13504/05/2011
136Changes for version 19.20:
137 - Fixed a bug added in v19r18: The <server_name>/SERVICE_LIST was no longer reporting correctly
138 the disappearence of services (by a "-<service_name>" ). Fixed.
139
140
14127/04/2011
142Changes for version 19.19:
143 - Fixed a very very old (horrible) bug in dis.c and dns.c: there was a hardwired malloc(8),
144 which was only ok for 32 bit machines. It's amazing this didn't bring more trouble...
145
146
14707/04/2011
148Changes for version 19.18:
149 - The standard server service <server_name>/SERVICE_LIST had problems reporting the correct
150 information when used by several clients in paralel - fixed.
151
152
15311/03/2011
154Changes for version 19.17:
155 - The TCPIP "listen" backlog for a server was increased for all servers (including the DNS)
156 from 16 to the constant SOMAXCONN (128 on Linux at the moment, 200 on Windows ?)
157 - After a "fork" the DIM initialization sequence guided by semaphores was not correctly
158 handled, this made the forked children hang and not respond to DIM anymore - fixed.
159
160
16123/02/2011
162Changes for version 19.16:
163 - DimServer::stop() did not correctly clear the ServerName - fixed.
164 - The Linux DID now prints the DNS it is connected to in the title bar.
165
166
16720/12/2010
168Changes for version 19.15:
169 - Still fixing dis_stop_serving():
170 - The DNS sometimes gets a remove service message from a server, after the server has
171 closed the connection, this was not handled properly - fixed.
172 - Fixed yet another detail (variable not cleared) in the thread handling at dis_stop_serving().
173 - dtq.c now clears all timer_queues at dis_stop_serving()
174 - Added some protections in case of closed connections.
175
176
17710/12/2010
178Changes for version 19.14:
179 - Still fixing dis_stop_serving():
180 - Adedd pthread_join in linux to wait for threads to die
181 - the following dis_start_serving() would not reconnect to the DNS if the DNS connection
182 was pending (i.e. the DNS was stopped or restarted)
183
184
18506/12/2010
186Changes for version 19.13:
187 - Fixed a few compiler warnings in dis.c
188 - Added #ifndef PXI around some Windows setPriority calls
189 - dis_stop_serving() did not completely clean-up DIM so that another dis_start_serving()
190 could be done properly after for example a "fork()". Fixed.
191
192
19320/09/2010
194Changes for version 19.12:
195 - Fixed a bug added when removing warnings in v19r10 (dis.c and dns.c).
196
197
19807/06/2010
199Changes for version 19.11:
200 - Added some protections in update_service() in order to try to solve a DIP issue.
201 (related to very frequent updates of the same service in different threads)
202 - Added the possibility of defining timeouts for:
203 - DimBrowser::getServices
204 - DimBrowser::getServers
205 - DimBrowser::getServerServices
206 - DimBrowser::getServerClients
207 - Added the possibility of retrieving the time a command arrived:
208 - int dis_get_timestamp(int service_id, int *secs, int *millisecs) in C
209 - int DimCommand::getTimestamp() and int DimCommand::getTimestampMillisecs() in C++
210 - Added a "const" keyword to the "char *format" parameter in the constructors of
211 - DimService and DimCommand
212 - Added a call DimCommand::hasNext(), can be used when commands are queued.
213 - Fixed a memory leak when using DimService::setData and then dynamically deleting the
214 DimService
215
216
21717/02/2010
218Changes for version 19.10:
219 - Fixed a bug in the DNS related to the latest change (browsing for a single service name)
220 The DNS could crash when killing a server.
221 - Removed some compilation warnings
222
223
22404/01/2010
225Changes for version 19.09:
226 - Created two new functions: dis_set_debug_on() and dis_set_debug_off(), these
227 enable or disable printing a message per service update
228 - Tried to protect against:
229 - a service being deleted from the server while it is being updated
230 - a client unsubscribing from a service while it is being updated.
231 - Optimized the DNS when browsing for a service search pattern without wildcards
232 (i.e. browsing for a single service name)
233
234
23513/11/2009
236Changes for version 19.08:
237 - Since version v18r4 where dim_wait() was modified, dim_wait could hang in windows if
238 the wake_up event was triggered before dim_wait was called. Could affect smi++.
239 Fixed.
240 - Fixed a compilation bug in dis.c that affected some platforms.
241
242
24330/10/2009
244Changes for version 19.07:
245 - Some more bugs related to being able to publish to more that one DNS fixed.
246
247
24828/10/2009
249Changes for version 19.06:
250 - When opening DNS connections, when the DNS is not there, from a process that is at the
251 same time a client and a server only one pending connection was used now two separate
252 ones are created.
253 - Tried to fix a few more problems related to dis_stop_serving...
254
255
25626/10/2009
257Changes for version 19.05:
258 - dis_stop_serving had stopped working in version 19.4. So all servers that undeclared
259 all services and then tried to re-declare new ones would fail (corrupted server name).
260 Affected in particular the DimBridge
261
262
26327/08/2009
264Changes for version 19.04:
265 - Added the following functions:
266 Server part:
267 C - dis_get_n_clients(int service_id)
268 C++ - int DimService::getNClients()
269 Client part (C++ only):
270 DimClient::setNoDataCopy()
271 This will prevent any data copy in the client and the user should make
272 sure that the data received from DIM is not used outside the callback
273 in order to benefir from this feature.
274 - Fixed the Java DIM Jar file, it was wrong in the previous version.
275
276
27731/07/2009
278Changes for version 19.03:
279 - Removed some more compilation warnings.
280 - Fixed a bug in the DNS. The mechanism for retrieving the "SERVER_LIST" when
281 some server names were longer that 35 characters was very slow.
282
283
28406/07/2009
285Changes for version 19.02:
286 - Fixed a bug in the server part handling of RPCs, it created a memory leak.
287 It was using a separate thread to handle timeouts and there is no safe way to
288 kill a thread from outside. Fixed.
289 - the function dim_stop_thread() is now obsolete.
290 - Added the possibility to change the send and receive buffer sizes:
291 - int dim_set_write_buffer_size(int size)
292 - int dim_get_write_buffer_size()
293 - int dim_set_read_buffer_size(int size)
294 - int dim_get_read_buffer_size()
295 The default (and minimum) is 16384 bytes.
296 These calls should be done before any other DIM calls.
297 - Fixed a bug in the Java DimBrowser class (the format was not returned correctly)
298
29904/05/2009
300Changes for version 19.01:
301 - A server can now publish to more than one DNS.
302 To use an extra DNS:
303 - in "C":
304 long dnsid;
305 char extra_dns[128];
306 ...
307 dim_get_env_var("EXTRA_DNS_NODE", extra_dns, sizeof(extra_dns));
308 dnsid = dis_add_dns(extra_dns,0);
309 sprintf(name1,"NewService%d",i);
310 dis_add_service_dns(dnsid, name1, "I", &NewData, sizeof(NewData),
311 (void *)0, 0 );
312 dis_start_serving_dns(dnsid, "xx_new");
313
314 - in C++:
315 DimServerDns *newDns;
316 char *extraDns = 0;
317 DimService *new_servint;
318 ...
319 extraDns = DimUtil::getEnvVar("EXTRA_DNS_NODE");
320 if(extraDns)
321 newDns = new DimServerDns(extraDns, 0, "new_TEST");
322 ...
323 if(extraDns)
324 new_servint = new DimService(newDns, "new_TEST/INTVAL",ival);
325
326 - Removed all warnings from DIM sources so that it can be compiled with -Wall -Wextra on Linux
327 - Changed the makefiles so that the default on Linux is now 64 bits.
328 - The flag 32BITS=yes can be added in order to generate 32 bit code
329
330
33126/02/2009
332Changes for version 18.05:
333 - Made the callback for "DIS_DNS/SERVER_LIST" uninterruptible, so that two clients subscribing
334 would not get mixed up answers.
335 - The same for "<server>/SERVICE_LIST"
336 - Tryied to fix a DNS crash, introduced in v18r4 by releasing the connection when "informing clients".
337 - removed some "//" comments in "C"
338
339
34020/02/2009
341Changes for version 18.04:
342 - Changed the dim_wait() mechanism, so that it works for several threads in parallel:
343 - On Linux it was based on POSIX semaphores now it is based on POSIX "condition
344 variables"
345 - On Windows it was based on "Auto Reset Events" now it uses "Manual Resel "Events"
346 - The DNS should now correctly update the "DIS_DNS/SERVER_LIST" service. It used to report
347 a new server, even when the services already existed and the server was killed by the DNS.
348 (And never report it killed). It also didn't report correctly when a server went out of "ERROR"
349 (this is reported as a "+" as for a new server).
350
351
35205/02/2009
353Changes for version 18.03:
354 - The list of registered services in a server could get corrupted in some rare cases
355 making the server crash - fixed.
356 - If the DNS couldn't talk to a client it could sometimes hang - fixed.
357 - Java client modifications:
358 - DimUpdatedInfo was not working correctly - fixed in dim_jni.c.
359 - Implemented DimRpcInfo
360 - Changed the DimBroser class to use DimRpcInfo.
361 - Added a jdim.jar file in the jdim/classes directory of the DIM distribution
362
363
36415/01/2009
365Changes for version 18.02:
366 - Added the following functions:
367 - C++ Client
368 - int DimClient.getServerPid()
369 - Java Client
370 - int DimClient.getServerPid()
371 - String[] DimBrowser.getServers()
372 - String DimBrowser.getServerNode(String server)
373 - int DimBrowser.getServerPid(String server)
374
375
37609/01/2009
377Changes for version 18.01:
378 - Added in the distribution the Visual Studio 8 dlls and manifest. Otherwise
379 it would not work on most PCs.
380
381
38203/12/2008
383Changes for version 18.00:
384 - The Windows execulables and libraries are now built using Visual Studio 8
385 - Some changes added by GSI mainly in the Java Native Interface
386
387
38806/11/2008
389Changes for version 17.12:
390 - Client functionality:
391 - Added a new function dic_stop(), to close anything related to DIM
392 for a client
393 - Added the function dic_get_server_pid(). Similar to dic_get_server().
394 Can be executed in a callback to retrieve the pid of the current server
395 - DimBrowser Class:
396 - DimBrowser::getServices() used to create and destroy the DimRpc connection
397 to the Dns every time it was called. This was heavy if called in a loop.
398 Now the connection is maintained until the DimBrowser itself is destroyed.
399 - A new method DimBrowser::getNextServer(char *&server, char *&node, int *pid)
400 has been created. similar to the previous one but returns also the server pid.
401 - DNS
402 - The DNS was still doing some blocking write calls to servers or clients.
403 Now all write calls have a timeout and can not block forever.
404 - Linux DID
405 - The "Subscribe" button was subscribing to services with update rate of 10 seconds.
406 This was misleading, the users could think the server was calling update_service
407 when it wasn't.
408 Now there are two Subscribe buttons ("on change" or "Update rate of 10 seconds").
409 - DimDridge
410 - Accepts an extra flag "-copy" which provokes an internal copy of the data.
411
412
41308/09/2008
414Changes for version 17.11:
415 - Some DIM Processes, servers or clients could enter a loop taking 100 % CPU
416 time in some rare occasions, fixed.
417 - Added some protections when removing services in the DimBridge.
418
419
42030/08/2008
421Changes for version 17.10:
422 - Some DIM Processes, servers or clients would not reconnect when the DNS was
423 restarted. Fixed two cause:
424 - Some processes in Linux were stuck reading from the DNS socket
425 - Some others "forgot" to set a timer under very special conditions
426 - Changed some of the DNS debug messages to be more explicit.
427
428
42921/07/2008
430Changes for version 17.09:
431 - DIM error messages were not being flushed when the output was redirected
432 to a logfile, fixed.
433
434
43518/07/2008
436Changes for version 17.08:
437 - Sometimes a server or a client could do a read on a sockect that had just
438 been closed which left them hanging forever - fixed.
439
440
44101/07/2008
442Changes for version 17.07:
443 - The DimTimer was sometimes not started when the constructor was called
444 with a time argument.
445 - Clients could not connect to more than 1024 servers - fixed.
446 (if the machine allows more than 1024 connections)
447
448
44930/06/2008
450Changes for version 17.06:
451 - Corrected the makefile for Darwin, now the number of accepted connections is
452 increased to 8192 only for Linux.
453 - Fixed a bug in the DimTimer, it used to accept to be re-started, but then crashed
454 at destruction time if not stopped the same number of times. Now it can not be
455 re-started.
456 - The Dns used to ask servers to re-register at regular intervals when they were not
457 sending their watchdog messages (i.e. they were in "ERROR", red in DID). Now the
458 DNS only asks once (unless they answer). This could cause the DNS to hang if
459 servers were in ERROR for a long time.
460 - The Dns now accepts a command line parameter: -d to print debug messages.
461 - The clients were not handling properly the case when they could contact the DNS
462 but then they could not contact the server that the DNS gave them (either because
463 of a firewall or because the server run on an inaccessible network). In this case
464 the clients would timeout trying to contact the server for each service and kept
465 asking the DNS the server coordinates over and over again. Now the clients keep
466 a list on unreacheable servers, so they don't try to contact the server for each
467 service and only ask the DNS again with an increasing interval that goes from 10
468 seconds to 2 minutes maximum.
469 - The server now issues an error message if the format string is too long.
470 - Linux DID
471 - Removed the command "Kill ALL Servers", it was too dangerous
472 - Now the list of nodes in "View Servers by Node" is in alphabetical order and
473 in lowercase.
474
475
47630/04/2008
477Changes for version 17.05:
478 - In Linux in some cases a SIGPIPE was generated. Normally the DIM library sets
479 the behaviour of SIGPIPE to ignored, but if another library or main program
480 changes the SIGPIPE behaviour, then the application could exit when the SIGPIPE
481 was generated. Fixed - on Linux now the function send with flag MSG_NOSIGNAL
482 is used in oder to avoid generating SIGPIPE.
483
484
485
4864/04/2008
487Changes for version 17.04:
488 - Sometimes processes (servers or clients) would hang when the DNS was restarted.
489 This was due to a strange (Windows?) feature, by which a connect could succeed
490 after a connection was closed (and reported) on the other side. Fixed.
491
492
493
49427/03/2008
495Changes for version 17.03:
496 - Can now make DID for 64 bits by making DIM using:
497 gmake X64=yes all
498 - Increased the size of the Hash tables for the servers and the DNS.
499
500
501
50220/02/2008
503Changes for version 17.02:
504 - Fixed the Java DimTimer - stop() didn't work
505 Required changing dim_jni.c as well as the java part
506 - Fixed DIM for Darwin - had stopped working
507
508
509
51020/01/2008
511Changes for version 17.01:
512 - The Java API now works on 64 bit machines, Thanks to Joern Adamczewski.
513 Please use:
514 gmake JDIM=yes all
515 - Linux executables are now compiled/linked on slc4 (32 bits).
516 - Big changes in the DimRpcs both client and server part. Tere were bugs
517 related to the handling of timeouts.
518 Unfortunatelly all applications using RPCs need to be re-linked.
519
520
521
522-----------------------------------------------------------------------------------------
523Previous version history:
524
52507/12/2007
526Changes for version 16.14:
527 - Now by default All DIM processes are ready to accept up to 8192 connections, both
528 in Linux and Windows. Although in Linux for this to be effective the machine system
529 limits must allow more than 1024 descriptors/open files per process.
530 - Fixed a little memory leak in tokenstring.cxx
531 - And a little compilation bug for some platforms in tcpip.c
532
533
53415/05/2007
535Changes for version 16.13:
536 - If DIM_HOST_NODE is defined when starting up a server, a DIM client will now try
537 two network interfaces in order to talk to that server and only give up if they both
538 fail. First it will try the ip name or ip address specified by the server using
539 DIM_HOST_NODE, if that fails it will try the ip address of the default interface
540 retrieved by the server using gethostname (and gethostbyname).
541 The changes basically affect the case in which the DIM_HOST_NODE given to the servers
542 is specified as IP address instad of an IP name. Otherwise this mechanism was already
543 working.
544
545
5463/05/2007
547Changes for version 16.12:
548 - The Java version did not exit properly when main() terminated - fixed.
549
550
55125/04/2007
552Changes for version 16.11:
553 - On Linux the timeout to detect a lost connections (unplugged ethernet cable
554 or machine reboot) was too long, around 15 minutes - Fixed.
555 On Linux the KEEPALIVE feature is now used instead of a regular socket write,
556 all other platforms should work as before.
557
558
55921/02/2007
560Changes for version 16.10:
561 - Found a bug in dis_stop_serving: one socket connection was not closed - fixed.
562 - Implemented a new environment variable for the DNS: DIM_DNS_ACCEPTED_NODES
563 Can receive a list on nodes or domains separated by commas.
564 If the DNS receives a connection from a node not in this list, it will
565 reject it and kill the server or client requesting it.
566 - Fixed some C++ warnings.
567
568
56919/01/2007
570Changes for version 16.9:
571 - The modifications done in version 16.8 have introduced a bug:
572 - DIM servers would not behave properly (exit) when receiving a kill command
573 from the DNS (for duplicated services, not allowed host names or manual "kill")
574 This is now fixed.
575
576
57730/10/2006
578Changes for version 16.8:
579 - Modified dis_stop_serving() and DimServer::stop() to completely stop DIM:
580 - Stop also the DIM threads.
581 - Release all allocated memory
582 - Allow a different port number when re-starting.
583
584
58511/07/2006
586Changes for version 16.7:
587 - Prepared for increasing the number of open connections per process
588 (On Linux still requires changing some parameters and recompiling the Dns)
589 - Fixed one error and several warnings for gcc 4.
590
591
59211/05/2006
593Changes for version 16.6:
594 - Sometimes a server or client would crash while exiting if the DNS was not running.
595 Fixed.
596 - Fixed the reporting of some ERROR messages on Windows (used to report error "0")
597 - Allowed dim_send_command to receive instead of -dns <node_name>
598 -dns <node_name>[:<port_number>]
599
600
60101/05/2006
602Changes for version 16.5:
603 - Big Spring Cleanup. Removed most warnings. Can now be compiled on
604 Windows with Warning Level 3 and on Linux with -Wall
605 (still not working for -ansi -pedantic...)
606 - When trying to access a server in a different network (i.e. not reacheable)
607 a client (for example DID) would take very very long to timeout - fixed.
608 - Added two new sets of functions that allow setting the DIM_DNS_NODE separately
609 for a server and a client in the same process:
610 - int dis_set_dns_node(char *node)
611 - int dis_get_dns_node(char *node)
612 - int dis_set_dns_port(int port)
613 - int dis_get_dns_port()
614
615 - int dic_set_dns_node(char *node)
616 - int dic_get_dns_node(char *node)
617 - int dic_set_dns_port(int port)
618 - int dic_get_dns_port()
619 These routines should be used instead of the equivalent ones starting with "dim_"
620 since these set the same DIM_DNS_NODE/port for both Server and client parts of a
621 process.
622 - Adapted the C++ equivalents (DimClient::setDnsNode, etc. and DimServer::setDnsNode,
623 etc.) to use the new routines, so they are now independent.
624 Adapted also the Java equivalents.
625 - Fixed DimBridge to use the new routines.
626 - Fixed a bug in DID that made it crash sometimes at startup (and also when the DNS
627 restarted)!
628 - Found some very interesting features of DIM:
629 - In a node with two ethernet interfaces (so connected to two networks):
630 - The DNS will answer to servers and client on both networks, only its server
631 part - DIS_DNS (the one that answers to DID and DimBrowser requests) would
632 in principle answer only to one of the networks (in principle the default
633 interface* but can be changed by setting the environment variable "DIM_HOST_NODE").
634 - But, in fact, if the DNS or any server is started with the environment variable
635 DIM_HOST_NODE set to the interface that is not the default* one. Than both the
636 DNS (including the server part) and the DIM servers will be accessible from both
637 networks. For example DID will work fine on both networks.
638 * The command "hostname" will return the name of the default network interface.
639
640 Note: As a result of inserting new functions the DIM shared library entry points have
641 changed, so all DIM Servers/Clients should be relinked (in particular in Linux).
642
643
64420/04/2006
645Changes for version 16.4:
646 - Optimized the DNS for providing the list or running servers dynamically
647 by subscribing to the service "DIS_DNS/SERVER_LIST"
648
649
65007/04/2006
651Changes for version 16.3:
652 - Upgraded to work on LynxOS Version 4.
653 - Updated makefile for INTEL platform
654 - Updated some ifdefs based on the existence of __Lynx__
655
656
65710/03/2006
658Changes for version 16.2:
659 - Increased the listen queue. To avoid "Connection Refused" messages from servers
660 or from the DNS.
661
662
66328/02/2006
664Changes for version 16.1:
665 - Fixed the NO_THREADS option for LINUX, it had stopped working.
666 - DimInfo::getData() could return an invalid pointer if called before connecting
667 to the server (or discovering the server did not exist). Fixed
668 (it now returns 0 in this case).
669
670
67109/11/2005
672Changes for version 16.0:
673 - Consolidated the new timer handling mechanism, should be much more precise.
674 - Fixed the RPC handling. Used to be based on timming assumptions.
675 Now uses a safe protocol to make sure the server is connected before sending
676 an RPC request.
677 - Included in the distribution some performance measurements and a benchmark
678 server and client. Sources in src/benchmark executables in /bin for windows
679 and /linux for linux.
680 Usage:
681 benchServer <message_size_in_bytes> <number_of_services>
682 benchClient
683 benchClient will run for a while and print the measurement results.
684
685Please check the Manual for more information at:
686 http://www.cern.ch/dim
Note: See TracBrowser for help on using the repository browser.