mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 04:52:47 -05:00
Integrate unfix.org's IPv6 patches up to level 10, with rather a lot
of polishing to bring them to what I think should in principle be release quality. Unlike the unfix.org patches themselves, this checkin enables IPv6 by default; if you want to leave it out, you have to build with COMPAT=-DNO_IPV6. I have tested that this compiles on Visual C 7 (so the nightlies _should_ acquire IPv6 support without missing a beat), but since I don't have IPv6 set up myself I haven't actually tested that it _works_. It still seems to make correct IPv4 connections, but that's all I've been able to verify for myself. Further testing is needed. [originally from svn r5047] [this svn revision also touched putty-wishlist]
This commit is contained in:
@ -300,7 +300,7 @@ static void create_controls(HWND hwnd, char *path)
|
||||
* Otherwise, we're creating the controls for a particular
|
||||
* panel.
|
||||
*/
|
||||
ctlposinit(&cp, hwnd, 80, 3, 13);
|
||||
ctlposinit(&cp, hwnd, 100, 3, 13);
|
||||
wc = &ctrls_panel;
|
||||
base_id = IDCX_PANELBASE;
|
||||
}
|
||||
@ -361,7 +361,7 @@ static int CALLBACK GenericMainDlgProc(HWND hwnd, UINT msg,
|
||||
HWND tvstatic;
|
||||
|
||||
r.left = 3;
|
||||
r.right = r.left + 75;
|
||||
r.right = r.left + 95;
|
||||
r.top = 3;
|
||||
r.bottom = r.top + 10;
|
||||
MapDialogRect(hwnd, &r);
|
||||
@ -375,7 +375,7 @@ static int CALLBACK GenericMainDlgProc(HWND hwnd, UINT msg,
|
||||
SendMessage(tvstatic, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
|
||||
|
||||
r.left = 3;
|
||||
r.right = r.left + 75;
|
||||
r.right = r.left + 95;
|
||||
r.top = 13;
|
||||
r.bottom = r.top + 219;
|
||||
MapDialogRect(hwnd, &r);
|
||||
|
Reference in New Issue
Block a user