File: msgRouter.c

package info (click to toggle)
radlib 2.12.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,132 kB
  • sloc: ansic: 15,843; sh: 8,102; makefile: 501
file content (1488 lines) | stat: -rw-r--r-- 48,110 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
/*---------------------------------------------------------------------------
 
  FILENAME:
        msgRouter.c
 
  PURPOSE:
        Provide a standalone message routing process to support the 
        "route by message ID" paradigm and the radmsgRouter.h API.
 
  REVISION HISTORY:
        Date            Engineer        Revision        Remarks
        12/02/2005      M.S. Teel       0               Original
        02/02/2010      MS Teel         1               Add remote routing
 
  NOTES:
        See radmsgRouter.h for API details and usage.

  LICENSE:
        Copyright 2001-2010 Mark S. Teel. All rights reserved.
 
        Redistribution and use in source and binary forms, with or without 
        modification, are permitted provided that the following conditions 
        are met:
 
        1. Redistributions of source code must retain the above copyright 
           notice, this list of conditions and the following disclaimer.
        2. Redistributions in binary form must reproduce the above copyright 
           notice, this list of conditions and the following disclaimer in the 
           documentation and/or other materials provided with the distribution.
 
        THIS SOFTWARE IS PROVIDED BY Mark Teel ``AS IS'' AND ANY EXPRESS OR 
        IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
        DISCLAIMED. IN NO EVENT SHALL MARK TEEL OR CONTRIBUTORS BE LIABLE FOR 
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
        OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
        HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
        STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
        IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
        POSSIBILITY OF SUCH DAMAGE.
  
----------------------------------------------------------------------------*/

//  System include files
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <sys/socket.h>

//  Library include files
#include <radmsgRouter.h>

//  Local include files

//  global memory declarations

//  global memory referenced

//  static (local) memory declarations:

static MSGRTR_WORK          msgrtrWork;         // for the msg router process only


// Local methods:
static void ClientRXHandler (int fd, void *userData);

//  system initialization:
static int msgrtrSysInit (MSGRTR_WORK *work, char *workingDir)
{
    struct stat     fileData;

    sprintf (work->pidFile, "%s/%s", workingDir, MSGRTR_LOCK_FILE_NAME);
    sprintf (work->fifoFile, "%s/%s", workingDir, MSGRTR_QUEUE_NAME);

    // check for our pid file, don't run if it IS there
    if (stat (work->pidFile, &fileData) == 0)
    {
        radMsgLogInit (PROC_NAME_MSGRTR, TRUE, TRUE);
        radMsgLog(PRI_CATASTROPHIC, 
                   "lock file %s exists, older copy may be running - aborting!",
                   work->pidFile);
        radMsgLogExit ();
        return ERROR;
    }

    return OK;
}

// system exit:
static int msgrtrSysExit (MSGRTR_WORK *work)
{
    struct stat     fileData;

    // delete our pid file:
    if (stat (work->pidFile, &fileData) == 0)
    {
        unlink (work->pidFile);
    }

    return OK;
}

static void defaultSigHandler (int signum)
{
    switch (signum)
    {
        case SIGPIPE:
            signal (signum, defaultSigHandler);
            break;

        case SIGCHLD:
            wait (NULL);
            signal (signum, defaultSigHandler);
            break;

        case SIGILL:
        case SIGBUS:
        case SIGFPE:
        case SIGSEGV:
        case SIGXFSZ:
        case SIGSYS:
            // unrecoverable signal - we must exit right now!
            radMsgLog(PRI_CATASTROPHIC, "%s: recv sig %d: bailing out!", 
                       PROC_NAME_MSGRTR, signum);
            msgrtrSysExit (&msgrtrWork);
            abort ();

        default:
            // can we allow the process to exit normally?
            if (radProcessGetExitFlag())
            {
                // NO! - we gotta bail here!
                radMsgLog(PRI_HIGH, "%s: recv sig %d: exiting now!", 
                           PROC_NAME_MSGRTR, signum);

                msgrtrSysExit (&msgrtrWork);
                exit (0);
            }

            // we can allow the process to exit normally...
            radMsgLog(PRI_HIGH, "%s: recv sig %d: exiting!", 
                       PROC_NAME_MSGRTR, signum);

            radProcessSetExitFlag ();

            signal (signum, defaultSigHandler);
            break;
    }

    return;
}

// Send a message to a remote client:
static int SendToRemote(MSGRTR_PIB* pib, ULONG msgID, void *data, int length)
{
    MSGRTR_HDR          *msg;

    msg = (MSGRTR_HDR *)radBufferGet(sizeof(*msg)+length);
    if (msg == NULL)
    {
        radMsgLog(PRI_HIGH, "SendToRemote: radBufferGet failed!");
        return ERROR;
    }

    msg->magicNumber        = MSGRTR_MAGIC_NUMBER;
    msg->srcpid             = 0;
    msg->msgID              = msgID;
    msg->length             = length;
    memcpy (msg->msg, data, length);

    msg->magicNumber        = htonl(msg->magicNumber);
    msg->srcpid             = htonl(msg->srcpid);
    msg->msgID              = htonl(msg->msgID);
    msg->length             = htonl(msg->length);

    if (radSocketWriteExact(pib->txclient, msg, sizeof(*msg)+length) 
        != sizeof(*msg)+length)
    {
        radMsgLog(PRI_HIGH, "SendToRemote: radSocketWriteExact msg failed!");
        radBufferRls(msg);
        return ERROR;
    }

    radBufferRls(msg);
    return OK;
}

static MSGRTR_PIB *getPIBByPID (int findpid)
{
    MSGRTR_PIB      *node;

    for (node = (MSGRTR_PIB *)radListGetFirst (&msgrtrWork.pibList);
         node != NULL;
         node = (MSGRTR_PIB *)radListGetNext (&msgrtrWork.pibList, (NODE *)node))
    {
        if (node->pid == findpid)
        {
            // got 'em!
            return node;
        }
    }

    return NULL;
}

static int RemovePIB(MSGRTR_PIB* pib)
{
    MSGRTR_PIB      *node;

    for (node = (MSGRTR_PIB *)radListGetFirst (&msgrtrWork.pibList);
         node != NULL;
         node = (MSGRTR_PIB *)radListGetNext (&msgrtrWork.pibList, (NODE *)node))
    {
        if (node == pib)
        {
            // got 'em!
            radListRemove(&msgrtrWork.pibList, (NODE *)node);
            free(pib);
            return OK;
        }
    }

    // didn't find him:
    return ERROR;
}

static MSGRTR_PIB *getPIBBySocket (int socketfd)
{
    MSGRTR_PIB      *node;

    for (node = (MSGRTR_PIB *)radListGetFirst (&msgrtrWork.pibList);
         node != NULL;
         node = (MSGRTR_PIB *)radListGetNext (&msgrtrWork.pibList, (NODE *)node))
    {
        if (node->txclient != NULL)
        {
            if (radSocketGetDescriptor(node->txclient) == socketfd)
            {
                // got 'em!
                return node;
            }
        }
    }

    return NULL;
}

static MSGRTR_MIIB *getMIIB (int findMsgID)
{
    MSGRTR_MIIB     *node;

    for (node = (MSGRTR_MIIB *)radListGetFirst (&msgrtrWork.miibList);
         node != NULL;
         node = (MSGRTR_MIIB *)radListGetNext (&msgrtrWork.miibList, (NODE *)node))
    {
        if (node->msgID == findMsgID)
        {
            // got 'em!
            return node;
        }
    }

    return NULL;
}

// Send an ack to a local client:
static int SendACK (MSGRTR_PIB *dest)
{
    MSGRTR_HDR          *hdr;
    MSGRTR_INTERNAL_MSG *msg;

    hdr = (MSGRTR_HDR *)radBufferGet (sizeof (*hdr) + sizeof(*msg));
    if (hdr == NULL)
    {
        radMsgLog(PRI_HIGH, "SendACK: radBufferGet failed!");
        return ERROR;
    }

    hdr->magicNumber        = MSGRTR_MAGIC_NUMBER;
    hdr->srcpid             = getpid ();
    hdr->msgID              = MSGRTR_INTERNAL_MSGID;
    hdr->length             = sizeof (*msg);

    msg = (MSGRTR_INTERNAL_MSG *)hdr->msg;
    msg->subMsgID           = MSGRTR_SUBTYPE_ACK;

    switch(dest->type)
    {
        case PIB_TYPE_LOCAL:
        {
            if (radProcessQueueSend (dest->queueName,
                                     MSGRTR_INTERNAL_MSGID,
                                     hdr,
                                     sizeof (*hdr) + sizeof(*msg))
                != OK)
            {
                radBufferRls (hdr);
                return ERROR;
            }
            break;
        }
        case PIB_TYPE_REMOTE:
        {
            if (radSocketWriteExact (dest->txclient,
                                     hdr,
                                     sizeof (*hdr) + sizeof(*msg))
                != sizeof (*hdr) + sizeof(*msg))
            {
                radBufferRls (hdr);
                return ERROR;
            }
            radBufferRls(hdr);
            break;
        }
    }
    return OK;
}

// Send a MSGRTR_SUBTYPE_MSGID_IS_REGISTERED answer to a local client:
static int SendIsRegistered (MSGRTR_PIB *dest, int isRegistered)
{
    MSGRTR_HDR          *hdr;
    MSGRTR_INTERNAL_MSG *msg;

    hdr = (MSGRTR_HDR *)radBufferGet (sizeof (*hdr) + sizeof(*msg));
    if (hdr == NULL)
    {
        radMsgLog(PRI_HIGH, "SendACK: radBufferGet failed!");
        return ERROR;
    }

    hdr->magicNumber        = MSGRTR_MAGIC_NUMBER;
    hdr->srcpid             = getpid ();
    hdr->msgID              = MSGRTR_INTERNAL_MSGID;
    hdr->length             = sizeof (*msg);

    msg = (MSGRTR_INTERNAL_MSG *)hdr->msg;
    msg->subMsgID           = MSGRTR_SUBTYPE_MSGID_IS_REGISTERED;
    msg->isRegistered       = isRegistered;

    switch(dest->type)
    {
        case PIB_TYPE_LOCAL:
        {
            if (radProcessQueueSend (dest->queueName,
                                     MSGRTR_INTERNAL_MSGID,
                                     hdr,
                                     sizeof (*hdr) + sizeof(*msg))
                != OK)
            {
                radBufferRls (hdr);
                return ERROR;
            }
            break;
        }
        case PIB_TYPE_REMOTE:
        {
            if (radSocketWriteExact (dest->txclient,
                                     hdr,
                                     sizeof (*hdr) + sizeof(*msg))
                != sizeof (*hdr) + sizeof(*msg))
            {
                radBufferRls (hdr);
                return ERROR;
            }
            radBufferRls(hdr);
            break;
        }
    }
    return OK;
}

// Register one or all existing msgIDs with a remote client:
// Pass 0 for msgID to send all:
static int RegisterRemoteMsgID(MSGRTR_PIB* remote, ULONG msgID, int IsRegister)
{
    MSGRTR_MIIB*        msgNode;
    MSGRTR_INTERNAL_MSG intMsg;

    for (msgNode = (MSGRTR_MIIB*)radListGetFirst(&msgrtrWork.miibList);
         msgNode != NULL;
         msgNode = (MSGRTR_MIIB*)radListGetNext(&msgrtrWork.miibList, (NODE*)msgNode))
    {
        if (msgID == 0 || msgNode->msgID == msgID)
        {
            // Got one:
            memset(&intMsg, 0, sizeof(intMsg));
            if (! IsRegister)
            {
                intMsg.subMsgID     = MSGRTR_SUBTYPE_DISABLE_MSGID;
            }
            else
            {
                intMsg.subMsgID     = MSGRTR_SUBTYPE_ENABLE_MSGID;
            }
            intMsg.targetMsgID  = msgNode->msgID;
            if (SendToRemote(remote, MSGRTR_INTERNAL_MSGID, &intMsg, sizeof(intMsg)) == ERROR)
            {
                radMsgLog(PRI_HIGH, "RegisterRemoteMsgID: SendToRemote failed!");
                return ERROR;
            }
        }
    }

    return OK;
}

// Send msgID registration to all remote clients except "notThisOne":
static int RegisterAllRemotesMsgID(ULONG msgID, MSGRTR_PIB* notThisOne)
{
    MSGRTR_PIB*     pib;

    for (pib = (MSGRTR_PIB*)radListGetFirst(&msgrtrWork.pibList);
         pib != NULL;
         pib = (MSGRTR_PIB*)radListGetNext(&msgrtrWork.pibList, (NODE*)pib))
    {
        if (pib == notThisOne)
        {
            continue;
        }

        if (pib->type == PIB_TYPE_REMOTE)
        {
            RegisterRemoteMsgID(pib, msgID, TRUE);
        }
    }

    return OK;
}

// Send msgID deregistration to all remote clients except "notThisOne":
static int DeregisterAllRemotesMsgID(ULONG msgID, MSGRTR_PIB* notThisOne)
{
    MSGRTR_PIB*     pib;

    for (pib = (MSGRTR_PIB*)radListGetFirst(&msgrtrWork.pibList);
         pib != NULL;
         pib = (MSGRTR_PIB*)radListGetNext(&msgrtrWork.pibList, (NODE*)pib))
    {
        if (pib == notThisOne)
        {
            continue;
        }

        if (pib->type == PIB_TYPE_REMOTE)
        {
            RegisterRemoteMsgID(pib, msgID, FALSE);
        }
    }

    return OK;
}

// Send a message to a client, local or remote:
static int SendToClient(MSGRTR_PIB *consumer, MSGRTR_HDR* hdr)
{
    UCHAR*          sendBfr;
    int             length  = hdr->length;

    switch(consumer->type)
    {
        case PIB_TYPE_LOCAL:
        {
            sendBfr = (UCHAR*)radBufferGet(length);
            if (sendBfr == NULL)
            {
                radMsgLog(PRI_HIGH, "SendToClient: radBufferGet failed!");
                return ERROR;
            }
            memcpy(sendBfr, hdr->msg, length);

            if (radProcessQueueSend (consumer->queueName, hdr->msgID, sendBfr, length)
                != OK)
            {
                radMsgLog(PRI_HIGH, "SendToClient: %s: radProcessQueueSend failed!",
                           consumer->name);
                radBufferRls (sendBfr);
                consumer->rxErrors ++;
                return ERROR;
            }
            break;
        }
        case PIB_TYPE_REMOTE:
        {
            if (consumer->maxMsgSize < length)
            {
                radMsgLog(PRI_HIGH, "SendToClient: %s: msg length %d exceeds remote capability %d!",
                           consumer->name, length, consumer->maxMsgSize);
                consumer->rxErrors ++;
                return ERROR;
            }

            if (SendToRemote(consumer, hdr->msgID, hdr->msg, hdr->length)== ERROR)
            {
                radMsgLog(PRI_HIGH, "SendToClient: %s: SendToRemote failed!",
                           consumer->name);
                consumer->rxErrors ++;
                return ERROR;
            }
            break;
        }
        default:
        {
            radMsgLog(PRI_HIGH, "SendToClient: unknown PIB type %d",
                       consumer->type);
            return ERROR;
        }
    }

    consumer->receives ++;
    msgrtrWork.transmits ++;
    return OK;
}

// Remove a given client from all msgID lists:
static void RemoveClientFromAllMsgs(MSGRTR_PIB *consumer)
{
    MSGRTR_MIIB     *node, *tempnode;
    MSGRTR_CIB      *cib;

    for (node = (MSGRTR_MIIB *)radListGetFirst (&msgrtrWork.miibList);
         node != NULL;
         node = (MSGRTR_MIIB *)radListGetNext (&msgrtrWork.miibList, (NODE *)node))
    {
        // loop through the consumer list for this msgID
        for (cib = (MSGRTR_CIB *)radListGetFirst (&node->consumers);
             cib != NULL;
             cib = (MSGRTR_CIB *)radListGetNext (&node->consumers, (NODE *)cib))
        {
            if (cib->pib == consumer)
            {
                // got 'em!
                radListRemove (&node->consumers, (NODE *)cib);
                free (cib);
                break;
            }
        }

        // if the consumer list is empty, remove the MIIB
        if (radListGetNumberOfNodes(&node->consumers) == 0)
        {
            tempnode = (MSGRTR_MIIB *)radListGetPrevious (&msgrtrWork.miibList, (NODE *)node);
            radListRemove (&msgrtrWork.miibList, (NODE *)node);
            free (node);
            node = tempnode;
        }
    }

    return;
}

// Add a client to a msgID list (check for duplicate):
static void AddClient(MSGRTR_MIIB* miib, MSGRTR_PIB* consumer)
{
    MSGRTR_CIB      *cib;

    // loop through the consumer list for this pib:
    for (cib = (MSGRTR_CIB *)radListGetFirst (&miib->consumers);
         cib != NULL;
         cib = (MSGRTR_CIB *)radListGetNext (&miib->consumers, (NODE *)cib))
    {
        if (cib->pib == consumer)
        {
            // He's already here, just return:
            return;
        }
    }

    // If here, we need to add him:
    cib = (MSGRTR_CIB *)malloc (sizeof(*cib));
    if (cib == NULL)
    {
        radMsgLog(PRI_HIGH, "AddClient: %d: malloc CIB failed!",
                   miib->msgID);
        return;
    }

    cib->pib = consumer;
    radListAddToEnd(&miib->consumers, (NODE *)cib);
    return;
}

// radlib message queue receive handler:
static void QueueMsgHandler
(
    char                *srcQueueName,
    UINT                msgType,
    void                *msg,
    UINT                length,
    void                *userData           // != NULL => socket RX invocation
)
{
    MSGRTR_HDR          *hdr = (MSGRTR_HDR *)msg;
    MSGRTR_INTERNAL_MSG *intMsg = (MSGRTR_INTERNAL_MSG *)hdr->msg;
    MSGRTR_PIB          *sockpib = (MSGRTR_PIB*)userData;
    MSGRTR_PIB          *pib;
    MSGRTR_MIIB         *miib;
    MSGRTR_CIB          *cib;

    // Note: This function is called in two different scenarios:
    // 1) Automatically for internal message RX, in which case sockpib = NULL
    // 2) By the remote socket RX handler, in which case sockpib = RX PIB
    // sockpib is used to determine local or remote reception.
    if (hdr->magicNumber != MSGRTR_MAGIC_NUMBER)
    {
        radMsgLog(PRI_HIGH, "QueueMsgHandler: RX bad magic number 0x%8.8X", 
                   hdr->magicNumber);
        return;
    }

    if (hdr->msgID == MSGRTR_INTERNAL_MSGID)
    {
        switch (intMsg->subMsgID)
        {
            case MSGRTR_SUBTYPE_REGISTER:
            {
                if (sockpib != NULL)
                {
                    // We don't handle socket registers here:
                    return;
                }

                if ((pib = getPIBByPID (hdr->srcpid)) != NULL)
                {
                    // he already exists, just ACK his funky self
                    SendACK (pib);
                    return;
                }

                // let's insert this guy
                pib = (MSGRTR_PIB *)malloc (sizeof(*pib));
                if (pib == NULL)
                {
                    radMsgLog(PRI_HIGH, "QueueMsgHandler: %s: malloc PIB failed!",
                               intMsg->name);
                    return;
                }

                memset (pib, 0, sizeof(*pib));
                pib->type   = PIB_TYPE_LOCAL;
                pib->pid    = hdr->srcpid;
                strncpy (pib->name, intMsg->name, PROCESS_MAX_NAME_LEN);
                strncpy (pib->queueName, srcQueueName, QUEUE_NAME_LENGTH);

                //  attach queue
                if (radProcessQueueAttach (pib->queueName, QUEUE_GROUP_ALL) == ERROR)
                {
                    radMsgLog(PRI_HIGH, "radProcessQueueAttach %s failed!",
                               pib->queueName);
                    free (pib);
                    return;
                }

                radListAddToEnd (&msgrtrWork.pibList, (NODE *)pib);

                // finally, ACK 'em
                SendACK (pib);
                return;
            }

            case MSGRTR_SUBTYPE_DEREGISTER:
            {
                if (sockpib == NULL)
                {
                    if ((pib = getPIBByPID (hdr->srcpid)) == NULL)
                    {
                        // he does not exist
                        return;
                    }
                }
                else
                {
                    pib = sockpib;
                }

                // first, remove him from the consumer lists
                RemoveClientFromAllMsgs (pib);

                // remove him from the PIB list
                radListRemove (&msgrtrWork.pibList, (NODE *)pib);

                if (sockpib == NULL)
                {
                    radProcessQueueDettach(pib->queueName, QUEUE_GROUP_ALL);
                }
                else
                {
                    radSocketDestroy(pib->txclient);
                    radSocketDestroy(pib->rxclient);
                }
                free (pib);

                return;
            }

        case MSGRTR_SUBTYPE_ENABLE_MSGID:
        {
            if (sockpib == NULL)
            {
                if ((pib = getPIBByPID (hdr->srcpid)) == NULL)
                {
                    // he does not exist
                    return;
                }
            }
            else
            {
                pib = sockpib;
            }

            // first, get the MIID
            miib = getMIIB(intMsg->targetMsgID);
            if (miib == NULL)
            {
                // new msgID, create the MIIB
                miib = (MSGRTR_MIIB *)malloc (sizeof(*miib));
                if (miib == NULL)
                {
                    radMsgLog(PRI_HIGH, "QueueMsgHandler: %d: malloc MIIB failed!",
                               intMsg->targetMsgID);
                    return;
                }

                miib->msgID = intMsg->targetMsgID;
                radListReset (&miib->consumers);
                radListAddToEnd (&msgrtrWork.miibList, (NODE *)miib);
            }

            // now that we have the MIIB, add this consumer
            AddClient(miib, pib);

            // Register with all remotes for this msgID too:
            RegisterAllRemotesMsgID(miib->msgID, sockpib);

            return;
        }

        case MSGRTR_SUBTYPE_MSGID_IS_REGISTERED:
        {
            int     isRegistered = 0;

            if (sockpib == NULL)
            {
                if ((pib = getPIBByPID (hdr->srcpid)) == NULL)
                {
                    // he does not exist
                    return;
                }
            }
            else
            {
                pib = sockpib;
            }

            // first, get the MIID
            miib = getMIIB(intMsg->targetMsgID);
            if (miib == NULL)
            {
                // unknown msgId
                return;
            }

            // Are there any consumers?
            if (radListGetNumberOfNodes(&miib->consumers) > 0)
            {
                isRegistered = 1;
            }

            // Send response:
            SendIsRegistered (pib, isRegistered);

            return;
        }

            case MSGRTR_SUBTYPE_DISABLE_MSGID:
            {
                if (sockpib == NULL)
                {
                    if ((pib = getPIBByPID (hdr->srcpid)) == NULL)
                    {
                        // he does not exist
                        return;
                    }
                }
                else
                {
                    pib = sockpib;
                }

                // first, get the MIIB
                miib = getMIIB(intMsg->targetMsgID);
                if (miib == NULL)
                {
                    // msgID does not exist...
                    return;
                }

                // now that we have the MIIB, remove this consumer
                for (cib = (MSGRTR_CIB *)radListGetFirst (&miib->consumers);
                     cib != NULL;
                     cib = (MSGRTR_CIB *)radListGetNext (&miib->consumers, (NODE *)cib))
                {
                    if (cib->pib == pib)
                    {
                        // remove him
                        radListRemove (&miib->consumers, (NODE *)cib);
                        free (cib);
                        break;
                    }
                }

                // Check here to see if there are any more consumers:
                // If not, remove the MIIB and deregister with remote guys:
                if (radListGetNumberOfNodes(&miib->consumers) == 0)
                {
                    // Deregister RX to all remotes (except possibly the sender):
                    DeregisterAllRemotesMsgID(intMsg->targetMsgID, sockpib);

                    // Remove the MIIB:
                    radListRemove(&msgrtrWork.miibList, (NODE *)miib);

                    radMsgLog(PRI_STATUS, "QueueMsgHandler: removed empty MIIB for msgID %d",
                               intMsg->targetMsgID);
                }

                return;
            }

            case MSGRTR_SUBTYPE_DUMP_STATS:
            {
                radMsgLog(PRI_MEDIUM, "---------- Message Router Totals:  TX:%10.10u  RX:%10.10u ----------",
                           msgrtrWork.transmits, msgrtrWork.receives);
                radMsgLog(PRI_MEDIUM, "     Name     \t MSGS TX  \t MSGS RX  \t  TXERRS  \t  RXERRS");
                radMsgLog(PRI_MEDIUM, "--------------\t----------\t----------\t----------\t----------");

                // loop through the PIBs
                for (pib = (MSGRTR_PIB *)radListGetFirst (&msgrtrWork.pibList);
                     pib != NULL;
                     pib = (MSGRTR_PIB *)radListGetNext (&msgrtrWork.pibList, (NODE *)pib))
                {
                    radMsgLog(PRI_MEDIUM, "%-14s\t%10u\t%10u\t%10u\t%10u",
                               pib->name,
                               pib->transmits, 
                               pib->receives,
                               pib->txErrors,
                               pib->rxErrors);
                }

                radMsgLog(PRI_MEDIUM, "--------------------------------------------------------------------------");
                return;
            }
        }

        return;
    }

    
    //// normal message, route it ////

    // get the PIB
    if (sockpib == NULL)
    {
        if ((pib = getPIBByPID (hdr->srcpid)) == NULL)
        {
            // he does not exist
            return;
        }
    }
    else
    {
        pib = sockpib;
    }

    msgrtrWork.receives ++;

    // get the proper MIIB
    miib = getMIIB (hdr->msgID);
    if (miib == NULL)
    {
        // no one to send it to
        pib->txErrors ++;
        return;
    }

    pib->transmits ++;

    // loop through the consumer list, sending it to each one of them
    for (cib = (MSGRTR_CIB *)radListGetFirst (&miib->consumers);
         cib != NULL;
         cib = (MSGRTR_CIB *)radListGetNext (&miib->consumers, (NODE *)cib))
    {
        if (cib->pib == sockpib)
        {
            // Don't send it back to the remote source (we allow local loopback):
            continue;
        }

        // send it to him
        if (SendToClient(cib->pib, hdr) == ERROR)
        {
            radMsgLog(PRI_HIGH, "QueueMsgHandler: %s: SendToClient failed!",
                      cib->pib->name);
        }
    }
            
    return;
}

// Listen socket's connection queue handler:
static void ServerRXHandler (int fd, void *userData)
{
    RADSOCK_ID          newClient;
    RADSOCK_ID          newServer;
    MSGRTR_HDR          msgHdr;
    MSGRTR_INTERNAL_MSG inMsg, outMsg;
    MSGRTR_PIB*         pib;

    newClient = radSocketServerAcceptConnection(msgrtrWork.server);
    if (newClient == NULL)
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketServerAcceptConnection failed!");
        return;
    }

    // Wait for the register pkt:
    if (radSocketReadExact(newClient, &msgHdr, sizeof(msgHdr)) != sizeof(msgHdr))
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketReadExact HDR failed!");
        radSocketDestroy(newClient);
        return;
    }

    // Do NtoH conversions:
    msgHdr.magicNumber  = ntohl(msgHdr.magicNumber);
    msgHdr.srcpid       = ntohl(msgHdr.srcpid);
    msgHdr.msgID        = ntohl(msgHdr.msgID);
    msgHdr.length       = ntohl(msgHdr.length);

    if (msgHdr.magicNumber != MSGRTR_MAGIC_NUMBER)
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: HDR magic failed!");
        radSocketDestroy(newClient);
        return;
    }

    if (msgHdr.msgID != MSGRTR_INTERNAL_MSGID)
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: HDR ID not internal!");
        radSocketDestroy(newClient);
        return;
    }

    // Read the rest:
    if (radSocketReadExact(newClient, &inMsg, sizeof(inMsg)) != sizeof(inMsg))
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketReadExact inMsg failed!");
        radSocketDestroy(newClient);
        return;
    }

    // Do NtoH conversions:
    inMsg.subMsgID      = ntohl(inMsg.subMsgID);
    inMsg.targetMsgID   = ntohl(inMsg.targetMsgID);
    inMsg.srcPort       = ntohl(inMsg.srcPort);
    inMsg.socketID      = ntohl(inMsg.socketID);
    inMsg.maxMsgSize    = ntohl(inMsg.maxMsgSize);

    if (inMsg.subMsgID == MSGRTR_SUBTYPE_REGISTER)
    {
        radMsgLog(PRI_STATUS, "Remote accept RX: %s:%d <== %s:%d",
                   radSocketGetHost(newClient), 
                   radSocketGetPort(newClient),
                   radSocketGetRemoteHost(newClient), 
                   radSocketGetRemotePort(newClient));

        // Now open the TX side socket:
        newServer = radSocketClientCreate(inMsg.srcIP, inMsg.srcPort);
        if (newServer == NULL)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketClientCreate %s:%d failed!",
                       inMsg.srcIP, inMsg.srcPort);
            radSocketDestroy(newClient);
            return;
        }

        // Send him an ack on this new socket:
        msgHdr.magicNumber      = MSGRTR_MAGIC_NUMBER;
        msgHdr.srcpid           = 0;
        msgHdr.msgID            = MSGRTR_INTERNAL_MSGID;
        msgHdr.length           = sizeof(MSGRTR_INTERNAL_MSG);

        outMsg.subMsgID         = MSGRTR_SUBTYPE_ACK;
        sprintf(outMsg.name, "router:%s", radSocketGetHost(newServer));
        strncpy(outMsg.srcIP, inMsg.srcIP, sizeof(outMsg.srcIP));
        outMsg.srcPort          = inMsg.srcPort;
        outMsg.socketID         = inMsg.socketID;
        outMsg.maxMsgSize       = SYS_BUFFER_LARGEST_SIZE;

        // Do HtoN conversions:
        msgHdr.magicNumber  = htonl(msgHdr.magicNumber);
        msgHdr.srcpid       = htonl(msgHdr.srcpid);
        msgHdr.msgID        = htonl(msgHdr.msgID);
        msgHdr.length       = htonl(msgHdr.length);
        outMsg.subMsgID     = htonl(outMsg.subMsgID);
        outMsg.targetMsgID  = htonl(outMsg.targetMsgID);
        outMsg.srcPort      = htonl(outMsg.srcPort);
        outMsg.socketID     = htonl(outMsg.socketID);
        outMsg.maxMsgSize   = htonl(outMsg.maxMsgSize);

        if (radSocketWriteExact(newServer, &msgHdr, sizeof(msgHdr)) != sizeof(msgHdr))
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketWriteExact msgHdr failed!");
            radSocketDestroy(newServer);
            radSocketDestroy(newClient);
            return;
        }
        if (radSocketWriteExact(newServer, &outMsg, sizeof(outMsg)) != sizeof(outMsg))
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketWriteExact outMsg failed!");
            radSocketDestroy(newServer);
            radSocketDestroy(newClient);
            return;
        }

        // OK, we are done, store the sockets in a new PIB:
        pib = (MSGRTR_PIB *)malloc (sizeof(*pib));
        if (pib == NULL)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: %s: malloc PIB failed!",
                       inMsg.name);
            radSocketDestroy(newServer);
            radSocketDestroy(newClient);
            return;
        }

        memset (pib, 0, sizeof(*pib));
        pib->type       = PIB_TYPE_REMOTE;
        strncpy (pib->name, inMsg.name, PROCESS_MAX_NAME_LEN);
        pib->rxclient   = newClient;
        pib->txclient   = newServer;
        pib->maxMsgSize = inMsg.maxMsgSize;

        // Now register for all messages we are interested in:
        if (RegisterRemoteMsgID(pib, 0, TRUE) == ERROR)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: RegisterRemoteMsgID failed");
            radSocketDestroy(pib->rxclient);
            radSocketDestroy(pib->txclient);
            free(pib);
            return;
        }

        radListAddToEnd(&msgrtrWork.pibList, (NODE *)pib);

        // Add the RX socket to our wait list:
        radProcessIORegisterDescriptor(radSocketGetDescriptor(pib->rxclient),
                                       ClientRXHandler,
                                       (void*)pib);

        radMsgLog(PRI_STATUS, "Remote Accept: %s:%d ==> %s:%d",
                   radSocketGetHost(pib->txclient), 
                   radSocketGetPort(pib->txclient),
                   radSocketGetRemoteHost(pib->txclient), 
                   radSocketGetRemotePort(pib->txclient));
    }
    else if (inMsg.subMsgID == MSGRTR_SUBTYPE_ACK)
    {
        // Now verify:
        if (strncmp(radSocketGetHost(newClient), inMsg.srcIP, sizeof(inMsg.srcIP)))
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: ACK local IP:%s does not match %s",
                       radSocketGetHost(newClient), inMsg.srcIP);
            radSocketDestroy(newClient);
            return;
        }
        if (msgrtrWork.listenPort != inMsg.srcPort)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: ACK local port:%d does not match %d",
                       msgrtrWork.listenPort, inMsg.srcPort);
            radSocketDestroy(newClient);
            return;
        }

        // They match, add the RX socket to the PIB:
        pib = getPIBBySocket(radSocketGetDescriptor((RADSOCK_ID)inMsg.socketID));
        if (pib == NULL)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: ACK getPIBBySocket failed");
            radSocketDestroy(newClient);
            return;
        }
        pib->rxclient   = newClient;
        pib->maxMsgSize = inMsg.maxMsgSize;

        // Now register for all messages we are interested in:
        if (RegisterRemoteMsgID(pib, 0, TRUE) == ERROR)
        {
            radMsgLog(PRI_HIGH, "ServerRXHandler: RegisterRemoteMsgID failed");
            RemovePIB(pib);
            return;
        }

        // Add to wait list:
        radProcessIORegisterDescriptor(radSocketGetDescriptor(pib->rxclient),
                                       ClientRXHandler,
                                       (void*)pib);        

        radMsgLog(PRI_STATUS, "ACK RX from Remote: %s:%d <== %s:%d",
                   radSocketGetHost(pib->rxclient), 
                   radSocketGetPort(pib->rxclient),
                   radSocketGetRemoteHost(pib->rxclient), 
                   radSocketGetRemotePort(pib->rxclient));
    }
    else
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: unexpected subMsgId %d", 
                   inMsg.subMsgID);
        radSocketDestroy(newClient);
        return;
    }
}

// Client RX message handler:
static UCHAR SocketRXBuffer[sizeof(MSGRTR_HDR) + SYS_BUFFER_LARGEST_SIZE];
static void ClientRXHandler (int fd, void *userData)
{
    MSGRTR_PIB*         pib = (MSGRTR_PIB*)userData;
    MSGRTR_HDR*         msgHdr = (MSGRTR_HDR*)SocketRXBuffer;
    MSGRTR_INTERNAL_MSG inMsg;
    int                 IsRemote = FALSE;

    // Read the header:
    if (radSocketReadExact(pib->rxclient, msgHdr, sizeof(MSGRTR_HDR)) 
        != sizeof(MSGRTR_HDR))
    {
        radMsgLog(PRI_HIGH, "ClientRXHandler: radSocketReadExact HDR failed - closing!");
        RemoveClientFromAllMsgs (pib);

        // remove him from the PIB list
        radListRemove (&msgrtrWork.pibList, (NODE *)pib);

        if (msgrtrWork.remoteServer == pib->txclient)
        {
            IsRemote = TRUE;
        }

        radProcessIODeRegisterDescriptorByFd(radSocketGetDescriptor(pib->rxclient));
        radSocketDestroy(pib->txclient);
        radSocketDestroy(pib->rxclient);
        free (pib);

        // Restart acquisition timer?
        if (IsRemote)
        {
            msgrtrWork.remoteServer = NULL;
            radTimerStart(msgrtrWork.remoteConnectTimer, MSGRTR_REMOTE_RETRY_INTERVAL);
        }
        return;
    }

    // Do NtoH conversions:
    msgHdr->magicNumber  = ntohl(msgHdr->magicNumber);
    msgHdr->srcpid       = ntohl(msgHdr->srcpid);
    msgHdr->msgID        = ntohl(msgHdr->msgID);
    msgHdr->length       = ntohl(msgHdr->length);

    if (msgHdr->magicNumber != MSGRTR_MAGIC_NUMBER)
    {
        radMsgLog(PRI_HIGH, "ClientRXHandler: HDR magic failed - closing!");
        RemoveClientFromAllMsgs (pib);

        // remove him from the PIB list
        radListRemove (&msgrtrWork.pibList, (NODE *)pib);

        radProcessIODeRegisterDescriptorByFd(radSocketGetDescriptor(pib->rxclient));
        radSocketDestroy(pib->txclient);
        radSocketDestroy(pib->rxclient);
        free (pib);
        return;
    }

    // Read the rest:
    if (radSocketReadExact(pib->rxclient, msgHdr->msg, msgHdr->length) 
        != msgHdr->length)
    {
        radMsgLog(PRI_HIGH, "ServerRXHandler: radSocketReadExact payload failed!");
        RemoveClientFromAllMsgs (pib);

        // remove him from the PIB list
        radListRemove (&msgrtrWork.pibList, (NODE *)pib);

        radProcessIODeRegisterDescriptorByFd(radSocketGetDescriptor(pib->rxclient));
        radSocketDestroy(pib->txclient);
        radSocketDestroy(pib->rxclient);
        free (pib);
        return;
    }

    // Pass the pkt to the queue msg handler (he handles socket data too):
    QueueMsgHandler(0, msgHdr->msgID, msgHdr, sizeof(MSGRTR_HDR) + msgHdr->length, pib);
}

// radlib event handler (not used):
static void EventHandler
(
    UINT        eventsRx,
    UINT        rxData,
    void        *userData
)
{
    return;
}

// Remote connection timer handler:
static void connectTimerHandler(void *parm)
{
    MSGRTR_HDR          msgHdr;
    MSGRTR_INTERNAL_MSG outMsg;
    MSGRTR_PIB*         pib;

    radMsgLog(PRI_STATUS, "msgRouter: trying remote server %s:%d...", 
               msgrtrWork.remoteIP, msgrtrWork.remotePort);

    msgrtrWork.remoteServer = radSocketClientCreate(msgrtrWork.remoteIP, msgrtrWork.remotePort);
    if (msgrtrWork.remoteServer == NULL)
    {
        radTimerStart(msgrtrWork.remoteConnectTimer, MSGRTR_REMOTE_RETRY_INTERVAL);
        return;
    }

    // Build the register pkt:
    msgHdr.magicNumber      = MSGRTR_MAGIC_NUMBER;
    msgHdr.srcpid           = 0;
    msgHdr.msgID            = MSGRTR_INTERNAL_MSGID;
    msgHdr.length           = sizeof(MSGRTR_INTERNAL_MSG);

    outMsg.subMsgID         = MSGRTR_SUBTYPE_REGISTER;
    sprintf(outMsg.name, "router:%s", radSocketGetHost(msgrtrWork.remoteServer));
    strncpy(outMsg.srcIP, radSocketGetHost(msgrtrWork.remoteServer), sizeof(outMsg.srcIP));
    outMsg.srcPort          = msgrtrWork.listenPort;
    outMsg.socketID         = (ULONG)msgrtrWork.remoteServer;
    outMsg.maxMsgSize       = SYS_BUFFER_LARGEST_SIZE;

    // Do HtoN conversions:
    msgHdr.magicNumber  = htonl(msgHdr.magicNumber);
    msgHdr.srcpid       = htonl(msgHdr.srcpid);
    msgHdr.msgID        = htonl(msgHdr.msgID);
    msgHdr.length       = htonl(msgHdr.length);
    outMsg.subMsgID     = htonl(outMsg.subMsgID);
    outMsg.targetMsgID  = htonl(outMsg.targetMsgID);
    outMsg.srcPort      = htonl(outMsg.srcPort);
    outMsg.socketID     = htonl(outMsg.socketID);
    outMsg.maxMsgSize   = htonl(outMsg.maxMsgSize);

    if (radSocketWriteExact(msgrtrWork.remoteServer, &msgHdr, sizeof(msgHdr)) != sizeof(msgHdr))
    {
        radMsgLog(PRI_HIGH, "radSocketWriteExact msgHdr failed!");
        radSocketDestroy(msgrtrWork.remoteServer);
        return;
    }
    if (radSocketWriteExact(msgrtrWork.remoteServer, &outMsg, sizeof(outMsg)) != sizeof(outMsg))
    {
        radMsgLog(PRI_HIGH, "radSocketWriteExact outMsg failed!");
        radSocketDestroy(msgrtrWork.remoteServer);
        return;
    }

    // Add him to the PIB list:
    pib = (MSGRTR_PIB *)malloc (sizeof(*pib));
    if (pib == NULL)
    {
        radMsgLog(PRI_HIGH, "%s: malloc PIB failed!", outMsg.name);
        radSocketDestroy(msgrtrWork.remoteServer);
        return;
    }

    memset (pib, 0, sizeof(*pib));
    pib->type       = PIB_TYPE_REMOTE;
    strncpy (pib->name, outMsg.name, PROCESS_MAX_NAME_LEN);
    pib->txclient   = msgrtrWork.remoteServer;
    radListAddToEnd(&msgrtrWork.pibList, (NODE *)pib);

    radMsgLog(PRI_STATUS, "Remote server TX: %s:%d ==> %s:%d",
               radSocketGetHost(msgrtrWork.remoteServer), 
               radSocketGetPort(msgrtrWork.remoteServer),
               radSocketGetRemoteHost(msgrtrWork.remoteServer), 
               radSocketGetRemotePort(msgrtrWork.remoteServer));

    return;
}


static void USAGE (void)
{
    printf ("%s: invalid arguments:\n", PROC_NAME_MSGRTR);
    printf ("USAGE: [prefix]/%s radSystemID workingDirectory <listenPort> <remoteIP:remotePort>\n", PROC_NAME_MSGRTR);
    
    printf ("    radSystemID           1-255, same system ID used by other processes in this group\n");
    printf ("    workingDirectory      where to store FIFO and pid files for radmrouted\n");
    printf ("    listenPort            (optional) socket sever listen port to accept remote connections\n");
    printf ("    remoteIP:remotePort   (optional) remote host IP:port to connect to\n");
}


// the entry point for the message router process
int main (int argc, char *argv[])
{
    void                (*alarmHandler)(int);
    int                 retVal;
    FILE                *pidfile;
    int                 radSysID;
    char                *word;

    // We must have radSysID and working directory as a minimum:
    if (argc < 3)
    {
        USAGE ();
        exit (1);
    }

    radSysID = atoi(argv[1]);
    if (radSysID < 1 || radSysID > 255)
    {
        USAGE ();
        exit (2);
    }

    memset (&msgrtrWork, 0, sizeof (msgrtrWork));
    radListReset (&msgrtrWork.pibList);
    radListReset (&msgrtrWork.miibList);

    // initialize some system stuff first
    retVal = msgrtrSysInit (&msgrtrWork, argv[2]);
    if (retVal == ERROR)
    {
        radMsgLogInit (PROC_NAME_MSGRTR, FALSE, TRUE);
        radMsgLog(PRI_CATASTROPHIC, "init failed!");
        radMsgLogExit ();
        exit (1);
    }

    msgrtrWork.radSystemID = (UCHAR)radSysID;

    // Listening for remote clients?
    if (argc > 3)
    {
        msgrtrWork.listenPort = atoi(argv[3]);
    }

    // Connecting to a remote router?
    if (argc > 4)
    {
        word = strtok(argv[4], ":");
        if (word == NULL)
        {
            radMsgLogInit (PROC_NAME_MSGRTR, FALSE, TRUE);
            radMsgLog(PRI_CATASTROPHIC, "bad remoteIP:remotePort given - ignoring!");
            radMsgLogExit ();
        }
        else
        {
            strncpy(msgrtrWork.remoteIP, word, sizeof(msgrtrWork.remoteIP));
            word = strtok(NULL, ":");
            if (word == NULL)
            {
                msgrtrWork.remoteIP[0] = 0;
                radMsgLogInit (PROC_NAME_MSGRTR, FALSE, TRUE);
                radMsgLog(PRI_CATASTROPHIC, "bad remoteIP:remotePort given - ignoring!");
                radMsgLogExit ();
            }
            else
            {
                msgrtrWork.remotePort = atoi(word);
            }
        }
    }

    /*  ... call the global radlib system init function
    */
    if (radSystemInit (msgrtrWork.radSystemID) == ERROR)
    {
        radMsgLogInit (PROC_NAME_MSGRTR, TRUE, TRUE);
        radMsgLog(PRI_CATASTROPHIC, "radSystemInit failed!");
        radMsgLogExit ();
        exit (1);
    }

    //  ... call the radlib process init function
    // Note: It is mandatory that the userData is passed in as NULL here; it is
    //       used by the message handler to determine local or socket RXs.
    if (radProcessInit (PROC_NAME_MSGRTR,
                        msgrtrWork.fifoFile,
                        MSGRTR_NUM_TIMERS,
                        TRUE,                       // TRUE for daemon
                        QueueMsgHandler,
                        EventHandler,
                        NULL)                       // must be NULL!
        == ERROR)
    {
        printf ("\nradmrouted: radProcessInit failed: %s\n\n", PROC_NAME_MSGRTR);
        radSystemExit (msgrtrWork.radSystemID);
        exit (1);
    }

    msgrtrWork.myPid = getpid ();
    pidfile = fopen (msgrtrWork.pidFile, "w");
    if (pidfile == NULL)
    {
        radMsgLog(PRI_CATASTROPHIC, "lock file create failed!\n");
        radProcessExit ();
        radSystemExit (msgrtrWork.radSystemID);
        exit (1);
    }
    fprintf (pidfile, "%d", getpid ());
    fclose (pidfile);


    alarmHandler = radProcessSignalGetHandler (SIGALRM);
    radProcessSignalCatchAll (defaultSigHandler);
    radProcessSignalCatch (SIGALRM, alarmHandler);

    radMsgLog(PRI_MEDIUM, "started on radlib system %d, workdir %s",
               msgrtrWork.radSystemID, argv[2]);

    // Create our remote timer:
    msgrtrWork.remoteConnectTimer = radTimerCreate(NULL, connectTimerHandler, NULL);
    if (msgrtrWork.remoteConnectTimer == NULL)
    {
        radMsgLog(PRI_CATASTROPHIC, "radTimerCreate failed!");
        radProcessExit ();
        radSystemExit (msgrtrWork.radSystemID);
        exit (1);
    }

    // Do we need to initialize remote services?
    if (msgrtrWork.listenPort > 0)
    {
        // yes, open listen socket:
        msgrtrWork.server = radSocketServerCreate(msgrtrWork.listenPort);
        if (msgrtrWork.server == NULL)
        {
            radMsgLog(PRI_CATASTROPHIC, "radSocketServerCreate failed!");
            radProcessExit ();
            radSystemExit(msgrtrWork.radSystemID);
            exit (1);
        }

        // Add him to our wait list:
        radProcessIORegisterDescriptor(radSocketGetDescriptor(msgrtrWork.server),
                                       ServerRXHandler,
                                       NULL);
    }

    // Do we need to connect to a remote router?
    if (strlen(msgrtrWork.remoteIP) > 0)
    {
        // yes, just start the timer:
        radTimerStart(msgrtrWork.remoteConnectTimer, 50);
    }


    // enter normal processing
    radMsgLog(PRI_STATUS, "running...");


//**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**
    while (TRUE)
    {
        // Wait for activity on any of our descriptors:
        if (radProcessWait(0) == ERROR)
        {
            break;
        }
    }
//**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**~~**


    radMsgLog(PRI_STATUS, "exiting normally...");

    radProcessSetExitFlag ();
    msgrtrSysExit (&msgrtrWork);
    radProcessExit ();
    radSystemExit (msgrtrWork.radSystemID);
    exit (0);
}