summaryrefslogtreecommitdiffstats
path: root/src/windows/wintel/telnet.c
blob: a334cf9e11e092fbb807b34197c944790fe6f001 (plain)
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
/****************************************************************************

    PROGRAM: telnet.c

    PURPOSE: Windows networking kernel - Telnet

    FUNCTIONS:

    WinMain() - calls initialization function, processes message loop
    InitApplication() - initializes window data and registers window
    InitInstance() - saves instance handle and creates main window
    MainWndProc() - processes messages
    About() - processes messages for "About" dialog box

    COMMENTS:

        Windows can have several copies of your application running at the
        same time.  The variable hInst keeps track of which instance this
        application is so that processing will be to the correct window.

****************************************************************************/

#include <windows.h>            
#include <string.h>
#include "telnet.h"
#include "auth.h"

HANDLE hInst;                                   /* current instance      */
HWND hWnd;                                      /* Main window handle.   */
CONFIG *tmpConfig;
GLOBALHANDLE hGlobalMem, hTitleMem;
CONNECTION *con = NULL;
char hostdata[MAXGETHOSTSTRUCT];
HGLOBAL ghCon;
SCREEN *fpScr;
int debug = 1;

char __near strTmp[1024];

BOOL bAutoConnection = FALSE; 
char szAutoHostName[64];
char szUserName[64];
char szHostName[64];

#ifdef KRB4
	#define WINDOW_CLASS   "telnetWClass_4"
#endif

#ifdef KRB5
	krb5_context k5_context;
    #define WINDOW_CLASS   "telnetWClass"
#endif

/*+**************************************************************************

    FUNCTION: WinMain(HANDLE, HANDLE, LPSTR, int)

    PURPOSE: calls initialization function, processes message loop

    COMMENTS:

        Windows recognizes this function by name as the initial entry point 
        for the program.  This function calls the application initialization 
        routine, if no other instance of the program is running, and always 
        calls the instance initialization routine.  It then executes a message 
        retrieval and dispatch loop that is the top-level control structure 
        for the remainder of execution.  The loop is terminated when a WM_QUIT 
        message is received, at which time this function exits the application 
        instance by returning the value passed by PostQuitMessage(). 

        If this function must abort before entering the message loop, it 
        returns the conventional value NULL.  

****************************************************************************/

int PASCAL
WinMain(hInstance, hPrevInstance, lpCmdLine, nCmdShow)
HANDLE hInstance;                /* current instance             */
HANDLE hPrevInstance;            /* previous instance            */
LPSTR lpCmdLine;                 /* command line                 */
int nCmdShow;                    /* show-window type (open/icon) */
{
    MSG msg;                     /* message                      */

    if (!hPrevInstance)
    	if (!InitApplication(hInstance)) /* Initialize shared things */
        	return (FALSE);      /* Exits if unable to initialize    */

    /* Perform initializations that apply to a specific instance */

	if (lpCmdLine[0]) {
		bAutoConnection = TRUE;
		lstrcpy((char *) szAutoHostName, lpCmdLine);
	}
	else bAutoConnection = FALSE;
	
    if (!InitInstance(hInstance, nCmdShow))
        return (FALSE);

    /* Acquire and dispatch messages until a WM_QUIT message is received. */

    while (GetMessage(&msg, NULL, NULL, NULL)) {
        TranslateMessage(&msg); /* Translates virtual key codes  */
        DispatchMessage(&msg);  /* Dispatches message to window  */
    }
    return (msg.wParam);    /* Returns the value from PostQuitMessage */
}


/*+**************************************************************************

    FUNCTION: InitApplication(HANDLE)

    PURPOSE: Initializes window data and registers window class

    COMMENTS:

        This function is called at initialization time only if no other 
        instances of the application are running.  This function performs 
        initialization tasks that can be done once for any number of running 
        instances.  

        In this case, we initialize a window class by filling out a data 
        structure of type WNDCLASS and calling the Windows RegisterClass() 
        function.  Since all instances of this application use the same window 
        class, we only need to do this when the first instance is initialized.  


****************************************************************************/

BOOL
InitApplication(hInstance)
HANDLE hInstance;                  /* current instance       */
{
    WNDCLASS  wc;

	ScreenInit(hInstance);

    /* Fill in window class structure with parameters that describe the       */
    /* main window.                                                           */

    wc.style = CS_HREDRAW|CS_VREDRAW;   /* Class style(s).                    */
    wc.lpfnWndProc = MainWndProc;       /* Function to retrieve messages for  */
                                        /* windows of this class.             */
    wc.cbClsExtra = 0;                  /* No per-class extra data.           */
    wc.cbWndExtra = 0;                  /* No per-window extra data.          */
    wc.hInstance = hInstance;           /* Application that owns the class.   */
    wc.hIcon = NULL; //LoadIcon(hInstance, "NCSA");
    wc.hCursor = NULL; //Cursor(NULL, IDC_ARROW);
    wc.hbrBackground = NULL; //GetStockObject(WHITE_BRUSH); 
    wc.lpszMenuName =  NULL;   /* Name of menu resource in .RC file. */
    wc.lpszClassName = WINDOW_CLASS;    /* Name used in call to CreateWindow. */

    /* Register the window class and return success/failure code. */
    return (RegisterClass(&wc));
}


/*+**************************************************************************

    FUNCTION:  InitInstance(HANDLE, int)

    PURPOSE:  Saves instance handle and creates main window

    COMMENTS:

        This function is called at initialization time for every instance of 
        this application.  This function performs initialization tasks that 
        cannot be shared by multiple instances.  

        In this case, we save the instance handle in a static variable and 
        create and display the main program window.  
        
****************************************************************************/
BOOL
InitInstance(hInstance, nCmdShow)
    HANDLE          hInstance;          /* Current instance identifier.       */
    int             nCmdShow;           /* Param for first ShowWindow() call. */
{
    int xScreen = 0, yScreen = 0;

    /* Save the instance handle in static variable, which will be used in  */
    /* many subsequence calls from this application to Windows.            */

    hInst = hInstance;

    /* Create a main window for this application instance.  */
    hWnd = CreateWindow(
        WINDOW_CLASS,                   /* See RegisterClass() call.          */
        "TCPWin",                       /* Text for window title bar.         */
        WS_SYSMENU,                     /* Window style.                      */
        xScreen/3,                      /* Default horizontal position.       */
        yScreen/3,                      /* Default vertical position.         */
        xScreen/3,                      /* Default width.                     */
        yScreen/3,                      /* Default height.                    */
        NULL,                           /* Overlapped windows have no parent. */
        NULL,                           /* Use the window class menu.         */
        hInstance,                      /* This instance owns this window.    */
        NULL                            /* Pointer not needed.                */
    );
    if (!hWnd)
        return (FALSE);
        
//    ShowWindow(hWnd, SW_SHOW);   /* Show the window   */
//    UpdateWindow(hWnd);          /* Sends WM_PAINT message      */        

    {
        WSADATA wsaData;
        if (WSAStartup(0x0101, &wsaData) != 0) {   /* Initialize the network */
	        MessageBox(NULL, "Couldn't initialize Winsock!", 
                NULL, MB_OK | MB_ICONEXCLAMATION);
	        return FALSE;
		}        	
    }

	if (! OpenTelnetConnection()) {
		WSACleanup();
		return(FALSE);
	}

    #ifdef KRB5
		krb5_init_context(&k5_context);
		krb5_init_ets(k5_context);
    #endif
    return (TRUE);
}

/*+***************************************************************************

    FUNCTION: MainWndProc(HWND, UINT, WPARAM, LPARAM)

    PURPOSE:  Processes messages

    MESSAGES:

    WM_COMMAND    - application menu (About dialog box)
    WM_DESTROY    - destroy window

****************************************************************************/

long FAR PASCAL
MainWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
    HSCREEN hgScr;
    SCREEN *fpScr;
    HGLOBAL hBuffer;
    LPSTR lpBuffer; 
    char c;
    int iEvent, namelen, cnt, ret;
    char buf[1024];
    struct sockaddr_in name;
	struct sockaddr_in remote_addr;
   	struct hostent *remote_host;
	char *tmpCommaLoc;
    
    switch (message) {

	case WM_MYSCREENCHANGEBKSP:
	    if (!con) break;
	    con->backspace = wParam;
	    if (con->backspace == VK_BACK) {
	        con->ctrl_backspace = 0x7f;
			WritePrivateProfileString(INI_TELNET, INI_BACKSPACE, 
                INI_BACKSPACE_BS, TELNET_INI);
		}
	    else {
	        con->ctrl_backspace = VK_BACK;
			WritePrivateProfileString(INI_TELNET, INI_BACKSPACE, 
                INI_BACKSPACE_DEL, TELNET_INI);
		}
       	GetPrivateProfileString(INI_HOSTS, INI_HOST "0", "", buf, 128, 
            TELNET_INI);
       	tmpCommaLoc = strchr(buf, ',');
       	if (tmpCommaLoc) {
			tmpCommaLoc++;
			if (con->backspace == VK_BACK)
				strcpy(tmpCommaLoc, INI_HOST_BS);
			else
				strcpy(tmpCommaLoc, INI_HOST_DEL);
		}
		WritePrivateProfileString(INI_HOSTS, INI_HOST "0", buf, TELNET_INI);
	    break;

	case WM_MYSCREENCHAR:
	    if (!con) break;
	    if (wParam == VK_BACK)
	        wParam = con->backspace;
	        else
	        if (wParam == 0x7f)
	            wParam = con->ctrl_backspace;
	    TelnetSend(con->ks, (char *)&wParam, 1, NULL);
	    break;
	
	case WM_MYSYSCHAR:
	    if (!con) break;
	    c = (char) wParam;
	    switch (c) {
	        case 'f':
	            getsockname(con->socket, (struct sockaddr *) &name, 
                    (int *) &namelen);
	            wsprintf(buf, "ftp %d.%d.%d.%d\n", 
	                name.sin_addr.S_un.S_un_b.s_b1, 
	                name.sin_addr.S_un.S_un_b.s_b2, 
	                name.sin_addr.S_un.S_un_b.s_b3, 
	                name.sin_addr.S_un.S_un_b.s_b4);
	            TelnetSend(con->ks, buf, lstrlen(buf), NULL);
	            break;                
	        case 'x':
	            hgScr = con->hScreen;
	            fpScr = (SCREEN *) GlobalLock(hgScr);
	            if (fpScr == NULL) break;
	            PostMessage(fpScr->hWnd, WM_CLOSE, NULL, NULL);
	            break;
	                            
	    }                
	    break;
	        
	case WM_MYSCREENBLOCK:
	    if (!con) break;
	    hBuffer = (HGLOBAL) wParam;
	    lpBuffer = GlobalLock(hBuffer);
	    TelnetSend(con->ks, lpBuffer, lstrlen(lpBuffer), NULL);
	    GlobalUnlock(hBuffer);
	    break;

	case WM_MYSCREENCLOSE:
	    if (!con) break;
	    kstream_destroy(con->ks);
		DestroyWindow(hWnd);
	    break;        

	case WM_QUERYOPEN:
	    return(0);
	    break;

	case WM_DESTROY:          /* message: window being destroyed */
	    kstream_destroy(con->ks);
	    GlobalUnlock(ghCon);
	    GlobalFree(ghCon); 
	    WSACleanup();
	    PostQuitMessage(0);
	    break;

	case WM_NETWORKEVENT: 
		iEvent = WSAGETSELECTEVENT(lParam);

		switch (iEvent) {    	

		case FD_READ:
	        cnt = recv(con->socket, buf, 1024, NULL);
			/*
			The following line has been removed until kstream supports
			non-blocking IO or larger size reads (jrivlin@fusion.com).
			*/
			/* cnt = kstream_read(con->ks, buf, 1024); */
	        buf[cnt] = 0;
	        parse((CONNECTION *) con, (unsigned char *) buf, cnt);
	        ScreenEm(buf, cnt, con->hScreen);
	        break;

	    case FD_CLOSE:
			kstream_destroy(con->ks);
			GlobalUnlock(ghCon);
			GlobalFree(ghCon); 
			WSACleanup();
			PostQuitMessage(0);
			break;

		case FD_CONNECT:
			ret = WSAGETSELECTERROR(lParam);
			if (ret) {
				wsprintf(buf, "Error %d on Connect", ret);
            OutputDebugString (buf);
		        MessageBox(NULL, buf, NULL, MB_OK|MB_ICONEXCLAMATION);
				kstream_destroy(con->ks);
				GlobalUnlock(ghCon);
				GlobalFree(ghCon); 
				WSACleanup();
				PostQuitMessage(0);
				break;
		    }
			start_negotiation(con->ks);
			break;		
  	    }
  	    break;  	        

	case WM_HOSTNAMEFOUND:
		ret = WSAGETASYNCERROR(lParam);
		if (ret) {
			wsprintf(buf, "Error %d on GetHostbyName", ret);
        	MessageBox(NULL, buf, NULL, MB_OK|MB_ICONEXCLAMATION);
		    kstream_destroy(con->ks);
		    GlobalUnlock(ghCon);
		    GlobalFree(ghCon); 
		    WSACleanup();
		    PostQuitMessage(0);
        	break;
        }
        remote_host = (struct hostent *) hostdata;
		remote_addr.sin_family = AF_INET;    
		remote_addr.sin_addr.S_un.S_un_b.s_b1 = remote_host->h_addr[0];
		remote_addr.sin_addr.S_un.S_un_b.s_b2 = remote_host->h_addr[1];
		remote_addr.sin_addr.S_un.S_un_b.s_b3 = remote_host->h_addr[2];
		remote_addr.sin_addr.S_un.S_un_b.s_b4 = remote_host->h_addr[3];
        #ifdef KRB4
    		remote_addr.sin_port = htons(23);
        #endif
        #ifdef KRB5
    		remote_addr.sin_port = htons(13131);
        #endif
		
		connect(con->socket, (struct sockaddr*) &remote_addr, 
		    	sizeof(struct sockaddr));    
		break;

	case WM_MYSCREENSIZE:
		con->width = LOWORD(lParam);			/* width in characters */
		con->height = HIWORD(lParam);		/* height in characters */
		if (con->bResizeable && con->ks)
			send_naws(con);
		wsprintf(buf, "%d", con->height);
		WritePrivateProfileString(INI_TELNET, INI_HEIGHT, buf, TELNET_INI);
		wsprintf(buf, "%d", con->width);
		WritePrivateProfileString(INI_TELNET, INI_WIDTH, buf, TELNET_INI);
	    break;
		
	default:              /* Passes it on if unproccessed    */
	    return(DefWindowProc(hWnd, message, wParam, lParam));
    }
    return (NULL);
}


/*+***************************************************************************

    FUNCTION: SaveHostName(hostname)

    PURPOSE: Saves the currently selected host name in the KERBEROS.INI file
		and returns the preferred backspace setting if one exists for
		that host.

	RETURNS: VK_BACK or 0x7f depending on the desired backspace setting.

****************************************************************************/

int
SaveHostName(char *host)
{
    char buf[128];
	char hostName[10][128];
	char *tmpCommaLoc;
	char tmpName[128];
	char tmpBuf[80];
	int nhosts;
	int n;
    int iHostNum;
	int bs;

	nhosts = 0;
    for (iHostNum = 0; iHostNum < 10; iHostNum++) {
        wsprintf(tmpBuf, INI_HOST "%d", iHostNum);
        GetPrivateProfileString(INI_HOSTS, tmpBuf, "", hostName[iHostNum], 
            128, TELNET_INI);
		strcpy(tmpName, hostName[iHostNum]);
        tmpCommaLoc = strchr(tmpName, ',');  
        if (tmpCommaLoc) {
			*tmpCommaLoc = '\0';
			while (tmpCommaLoc[1] == ' ')
				tmpCommaLoc++;
		}
		if (!hostName[iHostNum][0])
			break;
		nhosts++;
        if (strcmp(tmpName, host) == 0)
			break;
    }

	for (iHostNum++; iHostNum < 10; iHostNum++) {
        wsprintf(tmpBuf, INI_HOST "%d", iHostNum);
        GetPrivateProfileString(INI_HOSTS, tmpBuf, "", hostName[iHostNum], 
            128, TELNET_INI);
		if (!hostName[iHostNum][0])
			break;
		nhosts++;
	}

    if (tmpCommaLoc)
		tmpCommaLoc++;

    if (tmpName[0] && tmpCommaLoc) {
		if (_stricmp(tmpCommaLoc, INI_HOST_DEL) == 0)
			bs = 0x7f;
		else if (_stricmp(tmpCommaLoc, INI_HOST_BS) == 0)
			bs = VK_BACK;
	}
    else {
   	    GetPrivateProfileString(INI_TELNET, INI_BACKSPACE, INI_BACKSPACE_BS, 
			tmpBuf, sizeof(tmpBuf), TELNET_INI);
		if (_stricmp(tmpBuf, INI_BACKSPACE_DEL) == 0)
			bs = 0x7f;
		else
			bs = VK_BACK;
	}

	strcpy(buf, tmpConfig->title);
	strcat(buf, ", ");
	if (bs == VK_BACK)
		strcat(buf, INI_BACKSPACE_BS);
	else
		strcat(buf, INI_BACKSPACE_DEL);

	WritePrivateProfileString(INI_HOSTS, INI_HOST "0", buf, TELNET_INI);
	n = 1;
    for (iHostNum = 0; iHostNum < nhosts; iHostNum++) {
		strcpy(tmpName, hostName[iHostNum]);
        tmpCommaLoc = strchr(tmpName, ',');  
        if (tmpCommaLoc) {
			*tmpCommaLoc = '\0';
			while (tmpCommaLoc[1] == ' ')
				tmpCommaLoc++;
		}
        if (strcmp(tmpName, host) != 0) {
	        wsprintf(tmpBuf, INI_HOST "%d", n++);
			WritePrivateProfileString(INI_HOSTS, tmpBuf, hostName[iHostNum], 
                TELNET_INI);
		}
    }
	return (bs);
}

/*+*/
int
OpenTelnetConnection(void) {
    int nReturn, ret;
    struct sockaddr_in sockaddr;
	char *p;
	static struct kstream_crypt_ctl_block ctl;
    char buf[128];

    hGlobalMem = GlobalAlloc(GPTR, sizeof(CONFIG));
    tmpConfig = (CONFIG *) GlobalLock(hGlobalMem);
    
    if (bAutoConnection) {
		hTitleMem = GlobalAlloc(GPTR, lstrlen(szAutoHostName));
   		tmpConfig->title = (char *) GlobalLock(hTitleMem);            
		lstrcpy(tmpConfig->title, (char *) szAutoHostName);
    } else {
    	nReturn = DoDialog("OPENTELNETDLG", OpenTelnetDlg);
    	if (nReturn == FALSE) return(FALSE);
	}
                     	
    con = (CONNECTION *) GetNewConnection();
    if (con == NULL) return(0);

	tmpConfig->width = GetPrivateProfileInt(INI_TELNET, INI_WIDTH, 
        DEF_WIDTH, TELNET_INI);
	tmpConfig->height = GetPrivateProfileInt(INI_TELNET, INI_HEIGHT, 
        DEF_HEIGHT, TELNET_INI);
	con->width = tmpConfig->width;
	con->height = tmpConfig->height;

	con->backspace = SaveHostName(tmpConfig->title);

	if (con->backspace == VK_BACK) {
        tmpConfig->backspace = TRUE;
        con->ctrl_backspace = 0x7f;
    } else {
        tmpConfig->backspace = FALSE;
        con->ctrl_backspace = 0x08;
	}

    tmpConfig->hwndTel = hWnd;
    con->hScreen = (HSCREEN) InitNewScreen((CONFIG *) tmpConfig);
    if (!(con->hScreen)) {
    	OutputDebugString("Failed to initialize new screen! \r\n");
        GlobalUnlock(con->hScreen);
        GlobalUnlock(ghCon);
        GlobalFree(ghCon);
        GlobalUnlock(hGlobalMem); 
        GlobalFree(hGlobalMem);
        return(-1);
    }

    ret = (SOCKET) socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
    
    if (ret == SOCKET_ERROR) {
        wsprintf(buf, "Socket error on socket = %d!", WSAGetLastError());
        MessageBox(NULL, buf, NULL, MB_OK|MB_ICONEXCLAMATION);
        fpScr = (SCREEN *) GlobalLock(con->hScreen);
        if (fpScr != NULL)
        	DestroyWindow(fpScr->hWnd);
        GlobalUnlock(con->hScreen);
        GlobalUnlock(ghCon);
        GlobalFree(ghCon);
        GlobalUnlock(hGlobalMem);
        GlobalFree(hGlobalMem);
        return(-1);
    } 
    
    con->socket = ret;
    
    sockaddr.sin_family = AF_INET ;  
    sockaddr.sin_addr.s_addr = htonl( INADDR_ANY );
    sockaddr.sin_port = htons( 0 ) ;
    
    ret = bind(con->socket, (struct sockaddr *) &sockaddr, 
        (int) sizeof(struct sockaddr_in));
    
    if (ret == SOCKET_ERROR) {
        wsprintf(buf, "Socket error on bind!");
        MessageBox(NULL, buf, NULL, MB_OK|MB_ICONEXCLAMATION);
        fpScr = (SCREEN *) GlobalLock(con->hScreen);
        if (fpScr != NULL)
        	DestroyWindow(fpScr->hWnd);
        GlobalUnlock(con->hScreen);
        GlobalUnlock(ghCon);
        GlobalFree(ghCon);
        GlobalUnlock(hGlobalMem);
        GlobalFree(hGlobalMem);
        return(-1);
    }
    WSAAsyncSelect(con->socket, hWnd, WM_NETWORKEVENT, 
        FD_READ | FD_CLOSE | FD_CONNECT);

  	lstrcpy(szHostName, tmpConfig->title);
	p = strchr(szHostName, '@');
	if (p != NULL) {
		*p = 0;
		strcpy (szUserName, szHostName);
		strcpy(szHostName, ++p);
	}

   	WSAAsyncGetHostByName(hWnd, WM_HOSTNAMEFOUND, szHostName, hostdata, 
        MAXGETHOSTSTRUCT); 
    GlobalUnlock(con->hScreen);
//    GlobalUnlock(ghCon);
//    GlobalFree(ghCon);
    GlobalUnlock(hGlobalMem);
    GlobalFree(hGlobalMem);

	ctl.encrypt = auth_encrypt;
	ctl.decrypt = auth_decrypt;
	ctl.init    = auth_init;
	ctl.destroy = auth_destroy;

	con->ks = kstream_create_from_fd(con->socket, &ctl, NULL);

	kstream_set_buffer_mode(con->ks, 0);

	if (con->ks == NULL)
		return(-1);

    return(1);
}

/*+*/
CONNECTION *
GetNewConnection(void) {
    CONNECTION *fpCon;

    ghCon = GlobalAlloc(GHND, sizeof(CONNECTION));
    if (ghCon == NULL) return NULL;
    fpCon = (CONNECTION *) GlobalLock(ghCon);
    if (fpCon == NULL) return NULL;
    fpCon->backspace = TRUE;
	fpCon->bResizeable = TRUE;
    return(fpCon);
}
   
/*+***************************************************************************/
int NEAR
DoDialog(char *szDialog, FARPROC lpfnDlgProc) {
    int nReturn;
    
    lpfnDlgProc = MakeProcInstance(lpfnDlgProc, hInst);
    if (lpfnDlgProc == NULL)
        MessageBox(hWnd, "Couldn't make procedure instance", NULL, MB_OK);    
    
    nReturn = DialogBox(hInst, szDialog, hWnd, lpfnDlgProc);
    FreeProcInstance(lpfnDlgProc);
    return (nReturn);
}    

/*+***************************************************************************

    FUNCTION: OpenTelnetDlg(HWND, unsigned, WORD, LONG)

    PURPOSE:  Processes messages for "Open New Telnet Connection" dialog box

    MESSAGES:

    WM_INITDIALOG - initialize dialog box
    WM_COMMAND    - Input received

****************************************************************************/

BOOL FAR PASCAL
OpenTelnetDlg(HWND hDlg, WORD message, WORD wParam, LONG lParam) {
    char szConnectName[256];
    HDC  hDC;
    int  xExt, yExt;
    DWORD Ext;
    HWND hEdit;
    int  nLen;
    int iHostNum = 0;
    char tmpName[128], tmpBuf[80];
    char *tmpCommaLoc;
    
    switch (message) {
        case WM_INITDIALOG:        /* message: initialize dialog box */
            hDC = GetDC(hDlg);
            Ext = GetDialogBaseUnits();
            xExt = (190 *LOWORD(Ext)) /4 ;
            yExt = (72 * HIWORD(Ext)) /8 ;
            GetPrivateProfileString(INI_HOSTS, INI_HOST "0", "", tmpName, 
                128, TELNET_INI);
            if (tmpName[0]) {
            	tmpCommaLoc = strchr(tmpName, ',');
				if (tmpCommaLoc)
					*tmpCommaLoc = '\0';
            	SetDlgItemText(hDlg, TEL_CONNECT_NAME, tmpName);
            }	
            hEdit = GetWindow(GetDlgItem(hDlg, TEL_CONNECT_NAME), GW_CHILD);
            while (TRUE) {
                wsprintf(tmpBuf, INI_HOST "%d", iHostNum++);
                GetPrivateProfileString(INI_HOSTS, tmpBuf, "", tmpName, 
                    128, TELNET_INI);
                tmpCommaLoc = strchr(tmpName, ',');  
                if (tmpCommaLoc)
					*tmpCommaLoc = '\0';
                if (tmpName[0])
                    SendDlgItemMessage(hDlg, TEL_CONNECT_NAME, CB_ADDSTRING, 0, 
                        (LPARAM) ((LPSTR) tmpName));
                else
					break;
            }
            SetWindowPos(hDlg, NULL, (GetSystemMetrics(SM_CXSCREEN)/2)-(xExt/2), 
                (GetSystemMetrics(SM_CYSCREEN)/2)-(yExt/2), 0, 0, 
                SWP_NOSIZE|SWP_NOZORDER|SWP_SHOWWINDOW);
            ReleaseDC(hDlg, hDC);      
            SendMessage(hEdit, WM_USER+1, NULL, NULL);
            SendMessage(hDlg, WM_SETFOCUS, NULL, NULL);
            return (TRUE);

        case WM_COMMAND:              /* message: received a command */
            switch (wParam) {
                case TEL_CANCEL:
                     EndDialog(hDlg, FALSE);        /* Exits the dialog box   */
                     break;
                 
                case TEL_OK:
                     GetDlgItemText(hDlg, TEL_CONNECT_NAME, szConnectName, 256);
                     nLen = lstrlen(szConnectName);
                     if (nLen == 0) { 
                        MessageBox(hDlg, "You must enter a session name!", 
                            NULL, MB_OK);
                        break;
                        }
                     hTitleMem = GlobalAlloc(GPTR, nLen);
                     tmpConfig->title = (char *) GlobalLock(hTitleMem);
                     lstrcpy(tmpConfig->title, szConnectName);
                     EndDialog(hDlg, TRUE);
                     break;
            }                
            return (FALSE);                    
    }
    return (FALSE);               /* Didn't process a message    */
}

/*+***************************************************************************

    FUNCTION: TelnetSend(kstream ks, char *buf, int len, int flags)

    PURPOSE:	This is a replacement for the WinSock send() function, to
		send a buffer of characters to an output socket.  It differs
		by retrying endlessly if sending the bytes would cause
		the send() to block.  <gnu@cygnus.com> observed EWOULDBLOCK
		errors when running using TCP Software's PC/TCP 3.0 stack, 
		even when writing as little as 109 bytes into a socket
		that had no more than 9 bytes queued for output.  Note also that
		a kstream is used during output rather than a socket to facilitate
		encryption.

		Eventually, for cleanliness and responsiveness, this
		routine should not loop; instead, if the send doesn't
		send all the bytes, it should put them into a buffer
		and return.  Message handling code would send out the
		buffer whenever it gets an FD_WRITE message.

****************************************************************************/

int
TelnetSend(kstream ks, char *buf, int len, int flags) {

	int writelen;
	int origlen = len;

	while (TRUE) {
		writelen = kstream_write(ks, buf, len);

		if (writelen == len)	   /* Success, first or Nth time */
			return (origlen);

		if (writelen == SOCKET_ERROR) {
			if (WSAGetLastError() != WSAEWOULDBLOCK)
				return (SOCKET_ERROR);	/* Some error */
			/* For WOULDBLOCK, immediately repeat the send. */
		}
		else {
			/* Partial write; update the pointers and retry. */
			len -= writelen;
			buf += writelen;
		}
	}
}