Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(12) |
May
(18) |
Jun
(53) |
Jul
(95) |
Aug
(59) |
Sep
(35) |
Oct
(79) |
Nov
(80) |
Dec
(50) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(89) |
Feb
(80) |
Mar
(120) |
Apr
(110) |
May
(98) |
Jun
(127) |
Jul
(75) |
Aug
(67) |
Sep
(71) |
Oct
(90) |
Nov
(64) |
Dec
(59) |
2004 |
Jan
(62) |
Feb
(71) |
Mar
(76) |
Apr
(69) |
May
(47) |
Jun
(56) |
Jul
(31) |
Aug
(70) |
Sep
(36) |
Oct
(48) |
Nov
(24) |
Dec
(38) |
2005 |
Jan
(25) |
Feb
(34) |
Mar
(22) |
Apr
(41) |
May
(63) |
Jun
(48) |
Jul
(21) |
Aug
(14) |
Sep
(16) |
Oct
(22) |
Nov
(3) |
Dec
(10) |
2006 |
Jan
(28) |
Feb
(46) |
Mar
(30) |
Apr
(27) |
May
(27) |
Jun
(18) |
Jul
(47) |
Aug
(29) |
Sep
(24) |
Oct
(42) |
Nov
(8) |
Dec
(3) |
2007 |
Jan
(22) |
Feb
(9) |
Mar
(22) |
Apr
(34) |
May
(21) |
Jun
(6) |
Jul
(16) |
Aug
(8) |
Sep
(10) |
Oct
(11) |
Nov
(8) |
Dec
(4) |
2008 |
Jan
(11) |
Feb
(10) |
Mar
(25) |
Apr
(8) |
May
(22) |
Jun
(8) |
Jul
(6) |
Aug
(7) |
Sep
(1) |
Oct
(9) |
Nov
(14) |
Dec
(14) |
2009 |
Jan
(32) |
Feb
(11) |
Mar
(14) |
Apr
(4) |
May
(17) |
Jun
(8) |
Jul
(3) |
Aug
(19) |
Sep
(15) |
Oct
(13) |
Nov
(13) |
Dec
(16) |
2010 |
Jan
(11) |
Feb
(22) |
Mar
(28) |
Apr
(9) |
May
(11) |
Jun
(13) |
Jul
(16) |
Aug
(5) |
Sep
(4) |
Oct
(6) |
Nov
|
Dec
(4) |
2011 |
Jan
(7) |
Feb
(10) |
Mar
(14) |
Apr
(19) |
May
(17) |
Jun
(7) |
Jul
(21) |
Aug
(8) |
Sep
(7) |
Oct
(6) |
Nov
(11) |
Dec
(4) |
2012 |
Jan
(5) |
Feb
(7) |
Mar
(4) |
Apr
(2) |
May
(8) |
Jun
(12) |
Jul
(5) |
Aug
(5) |
Sep
(1) |
Oct
|
Nov
(5) |
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(5) |
Aug
(14) |
Sep
(18) |
Oct
(1) |
Nov
(6) |
Dec
(3) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(9) |
Apr
(1) |
May
(18) |
Jun
(12) |
Jul
(3) |
Aug
(8) |
Sep
(8) |
Oct
(3) |
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
(4) |
Mar
(6) |
Apr
(3) |
May
|
Jun
(2) |
Jul
(4) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(1) |
2
(1) |
3
|
4
(2) |
5
(1) |
6
|
7
(3) |
8
(12) |
9
(5) |
10
(9) |
11
(1) |
12
(3) |
13
|
14
(5) |
15
|
16
(4) |
17
(5) |
18
(1) |
19
(4) |
20
|
21
(3) |
22
(1) |
23
(2) |
24
(3) |
25
(1) |
26
(1) |
27
(4) |
28
|
29
(3) |
30
|
31
|
|
|
From: Mrs. Brisby <mrs.brisby@ni...> - 2003-07-05 03:59:06
|
If it really is blocking in connect() (around line 155 in tcp.c/CVS), then you can do either: 1. put an alarm(N); right above that line, where N is the number of seconds you want to wait. 2. lower the TCP connection timeout limit on your operating system However, the magic words you are using are "connect to an ip" -- I think your resolver library doesn't translate gethostbyname()'s for IP addresses, but instead actually asks the DNS cache for it, _AND_ you're not using a DNS cache that performs that translation (like djbdns does) RDESKTOP-DEVEL: Your tcp_connect routine is not friendly to systems with a broken resolver library (sadly, most aren't). I've taken the liberty of rewriting those functions. Since I am lazy, I've just coded them in a separate file. Please see attached code fragment, integrate into tcp.c (fairly easily) and apply to CVS. On Fri, 2003-07-04 at 04:50, Justin Fretwell wrote: > I need to reduce the timeout when someone tries to connect to an ip with no > terminal services running. how might i do this? |