home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / amiga / datacomm / 5803 < prev    next >
Encoding:
Text File  |  1992-08-19  |  4.6 KB  |  126 lines

  1. Path: sparky!uunet!wupost!gumby!yale!yale.edu!nigel.msen.com!ilium!sycom!rkushner
  2. From: rkushner@sycom.mi.org (Ronald Kushner)
  3. Newsgroups: comp.sys.amiga.datacomm
  4. Subject: Re: C-NET
  5. Distribution: world
  6. X-BBS-Software: EXCELSIOR! v0.95f
  7. Message-ID: <rkushner.3q2b@sycom.mi.org>
  8. Date: 19 Aug 92 23:40:47 EST
  9. Organization: Michigan Information eXchange
  10. Lines: 114
  11.  
  12. In an article, gbartoli@guild.socal.com (Guy Bartoli) writes:
  13.  
  14.  
  15. >        If you could please post/email whatever proof you have (ie:
  16. >original author statements, specific lines of code, etc), I would greatly
  17. >appreciate it. I personally feel that CNET has to be >the< greatest
  18. >investment I have ever made in my Amiga.
  19. >
  20.  
  21.  
  22. Well, I found the aux ripoff when I was looking for device/handler examples.
  23. I said, wow, this is some deep shit, I can not imagine someone like Pletzer
  24. grasping the concept of a handler, let alone writing one(for heavens sake,
  25. this guy doesn't even understand a linked list!). Whats really sad is that
  26. C-Net's auxhandler's _main() has to be a cut and paste with labotomized
  27. serial routines(he uses a message port rdport to communicate between C-Net
  28. and this aux handler). This handler wasn't even resident, and I found
  29. C-Net's handler wasn't resident either. When I saw char *version = "ver 1.0
  30. (c) Steve Drew 1987", I said to myself "If its cut and paste without
  31. understanding what the functions do, I bet he left this in."  Sure enough,
  32. I found the copyright message inside of cnetaux-handler.  Even the bailout
  33. hack "ENDCLI" is in the C-Net code. 
  34.  
  35.  
  36. I'm willing bet this code lifter doesn't have a license with Commodore to 
  37. distribute Workbench with his program either.
  38.  
  39. And if you want other examples, I don't have the time personally to get into 
  40. it. But they are there. A person who wrote a module for my BBS had his code 
  41. ripped in the past by Ken(I will let that individual come forward himself), 
  42. and his code implemented into C-Net. He sent the source to Ken as an example 
  43. (Ken's request, as a favor), Ken cut and pasted it right into the program. 
  44. Maybe others have simular stories..
  45.  
  46.  
  47. /****************************************************************************
  48.  *
  49.  *  Aux Driver V1.0 (c)CopyRight 1987, Steve Drew.  All Rights Reserved.
  50.  *  
  51.  *  Aux-Handler Ver. 1.0  1-May-1987
  52.  *
  53.  *  Steve Drew
  54.  *  52-Castledale Cres. N.E.
  55.  *  Calgary, Ab. Canada.
  56.  *
  57.  ***************************************************************************/
  58.  
  59.  
  60.  
  61.  
  62. _main()
  63. {
  64.  
  65.  
  66.     extern void returnpkt();            /* sends back the packet          */
  67.     extern void returnpktplain();       /* use args in Res1               */
  68.     extern struct DosPacket *taskwait();
  69.  
  70.  
  71.            char       *version =        "Ver 1.0 (c) Steve Drew 1987";
  72.     struct Process    *myproc;          /* my process                     */
  73.     struct DosPacket  *mypkt;           /* a pointer to the dos packet    */
  74.     struct DosPacket  *rdpkt;     
  75.     struct DeviceNode *mynode;          /* our device node (parmpkt Arg3) */
  76.     struct FileHandle *fh;              /* a pointer to our file handle   */
  77.     struct MsgPort    *myport;  
  78.     long              run = TRUE;       /* handler main loop flag         */
  79.     u_char            *ptr;             /* ptr for name translation       */
  80.     char              *name,*s;         /* ptr to name for open           */
  81.     int               aux_open = 0;     /* aux open count                 */
  82.     char              auxbuf[AUXBUFSIZE];/* Our type ahead buffer         */
  83.     long              signals;          /* signals that occurred in Wait  */
  84.  
  85.  
  86. ---
  87.  
  88.  
  89. ---
  90.             /*
  91.                 This is a Hack to allow a bail out of a NEWCLI
  92.                 that is using the AUX. By doing say an echo >AUX:ENDCLI
  93.                 from another process the reader (being the NEWCLI)
  94.                 will be sent a ENDCLI command.
  95.             */
  96.  
  97.  
  98.             if (!strcmp(name,"AUX:ENDCLI") && (aux_stat & AUX_RPEND)) {
  99.                 strcpy(rdpkt->dp_Arg2,"ENDCLI\n");
  100.                 rdpkt->dp_Res1 = 7L;
  101.                 returnpktplain(rdpkt, myproc);
  102.                 aux_stat &= ~AUX_RPEND;
  103.             }
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112. cnetaux-handler             4116 ----rwed 24-Jun-91 17:51:17
  113.  
  114.  
  115. 05B0: FF3C90BC 0000000B 6700FCD8 53806700    .<.╝....g.ⁿ╪S.g.
  116. 05C0: FCF25380 6700FF6E 60AC6000 FBCC206D    ⁿ≥S.g..n`¼`.√╠ m
  117. 05D0: FFEC42A8 00084E5D 4E755665 7220312E    .∞B ..N]NuVer 1.
  118. 05E0: 30202863 29205374 65766520 44726577    0 (c) Steve Drew
  119. 05F0: 20313938 37007264 706F7274 00415558     1987.rdport.AUX
  120. 0600: 3A454E44 434C4900 454E4443 4C490A00    :ENDCLI.ENDCLI..
  121. 0610: 4E55FFF0 2B7C0000 0001FFF0 48780008    NU.≡+|.....≡Hx..
  122. 0620: 487A00F4 2F2D0008 4EBA0646 4FEF000C    Hz.o/-..N║.FOi..
  123. 0630: 4A806704 4E5D4E75 206D0008 50882B48    J.g.N]Nu m..P.+H
  124.  
  125.  
  126.