1 .\" Copyright (c) 1986, 1993 2 .\" The Regents of the University of California. All rights reserved. 3 .\" 4 .\" Redistribution and use in source and binary forms, with or without 5 .\" modification, are permitted provided that the following conditions 6 .\" are met: 7 .\" 1. Redistributions of source code must retain the above copyright 8 .\" notice, this list of conditions and the following disclaimer. 9 .\" 2. Redistributions in binary form must reproduce the above copyright 10 .\" notice, this list of conditions and the following disclaimer in the 11 .\" documentation and/or other materials provided with the distribution. 12 .\" 3. Neither the name of the University nor the names of its contributors 13 .\" may be used to endorse or promote products derived from this software 14 .\" without specific prior written permission. 15 .\" 16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 .\" SUCH DAMAGE. 27 .\" 28 .\" @(#)streamwrite.c 8.1 (Berkeley) 6/8/93 29 .\" 30 #include <sys/types.h> 31 #include <sys/socket.h> 32 #include <netinet/in.h> 33 #include <netdb.h> 34 #include <stdio.h> 35 36 #define DATA "Half a league, half a league . . ." 37 38 /* 39 * This program creates a socket and initiates a connection with the socket 40 * given in the command line. One message is sent over the connection and 41 * then the socket is closed, ending the connection. The form of the command 42 * line is streamwrite hostname portnumber 43 */ 44 45 main(argc, argv) 46 int argc; 47 char *argv[]; 48 { 49 int sock; 50 struct sockaddr_in server; 51 struct hostent *hp, *gethostbyname(); 52 char buf[1024]; 53 54 /* Create socket */ 55 sock = socket(AF_INET, SOCK_STREAM, 0); 56 if (sock < 0) { 57 perror("opening stream socket"); 58 exit(1); 59 } 60 /* Connect socket using name specified by command line. */ 61 server.sin_family = AF_INET; 62 hp = gethostbyname(argv[1]); 63 if (hp == 0) { 64 fprintf(stderr, "%s: unknown host\en", argv[1]); 65 exit(2); 66 } 67 bcopy(hp->h_addr, &server.sin_addr, hp->h_length); 68 server.sin_port = htons(atoi(argv[2])); 69 70 if (connect(sock, &server, sizeof(server)) < 0) { 71 perror("connecting stream socket"); 72 exit(1); 73 } 74 if (write(sock, DATA, sizeof(DATA)) < 0) 75 perror("writing on stream socket"); 76 close(sock); 77 } 78