> Send=GET /supressed/public/ HTTP/1.0\r\nAccept: */*\r\nUser-Agent: > Ipswitch_Whatsup/4.0\r\n\r\n > Expect=~.*</html>
This means "expect something that contains 0 or more of anything, followed by </html> The .* is thus a bit redundant. This would work just as well: Expect=~</html> ...given that you are trying to make sure that you are receiving the end of the webpage. Mark Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/
