~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to libtransmission/peer-io.c

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2007-10-29 19:53:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071029195302-gyy129sjmci7ezel
Tags: 0.91.dfsg-1
* New upstream release (Closes: #448516).
* Using manpages from source package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * This exemption does not extend to derived works not owned by
8
8
 * the Transmission project.
9
9
 *
10
 
 * $Id: peer-io.c 3501 2007-10-22 23:27:47Z charles $
 
10
 * $Id: peer-io.c 3555 2007-10-25 14:34:43Z charles $
11
11
 */
12
12
 
13
13
#include <assert.h>
14
14
#include <string.h>
15
15
#include <stdio.h>
16
16
#include <unistd.h>
17
 
#include <arpa/inet.h>
 
17
#include <netinet/in.h> /* struct in_addr */
 
18
#include <arpa/inet.h> /* inet_ntoa */
 
19
 
 
20
#include <sys/types.h> /* event.h needs this */
18
21
#include <event.h>
 
22
 
19
23
#include "transmission.h"
20
24
#include "crypto.h"
21
25
#include "net.h"