From 227ca3c9bb7d78334e5d105e7830450b636e2b33 Mon Sep 17 00:00:00 2001 From: Alex Halderman Date: Thu, 29 Aug 2013 15:21:12 -0400 Subject: [PATCH] Fix description --- examples/banner-grab-go/README | 8 ++++---- examples/banner-grab-go/banner.go | 16 ++++------------ 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/examples/banner-grab-go/README b/examples/banner-grab-go/README index b487b22..1f7eb3a 100644 --- a/examples/banner-grab-go/README +++ b/examples/banner-grab-go/README @@ -1,10 +1,10 @@ TCP banner grabber implemented in Go (experimental) ====== -This program will make TCP connections to IP addresses provide on -stdin, optionally send them a short message, and wait for their -responses. Each response is printed to stdout, along with the -responding host's IP address. Status messages appear on stderr. +This program will make TCP connections to IP addresses provided on +stdin, optionally send a short message, and wait for responses. Each +response is printed to stdout, along with the responding host's IP +address. Status messages appear on stderr. USING: ----- diff --git a/examples/banner-grab-go/banner.go b/examples/banner-grab-go/banner.go index d50ed05..d3c5026 100644 --- a/examples/banner-grab-go/banner.go +++ b/examples/banner-grab-go/banner.go @@ -1,22 +1,14 @@ /* TCP banner grabber, implemented in go -This program will make TCP connections to IP addresses provide on -stdin, optionally send them a short message, and wait for their -responses. Each response is printed to stdout, along with the -responding host's IP address. Status messages appear on stderr. +This program will make TCP connections to IP addresses provided on +stdin, optionally send a short message, and wait for responses. Each +response is printed to stdout, along with the responding host's IP +address. Status messages appear on stderr. */ package main -/* - * banner.go Copyright 2013 Regents of the University of Michigan - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy - * of the License at http://www.apache.org/licenses/LICENSE-2.0 - */ - import ( "bufio" "encoding/base64"