socket.cc (5523:6279e78a2df2) socket.cc (6214:1ec0ec8933ae)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 23 unchanged lines hidden (view full) ---

32#include <sys/socket.h>
33
34#include <netinet/in.h>
35#include <netinet/tcp.h>
36
37#include <errno.h>
38#include <unistd.h>
39
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 23 unchanged lines hidden (view full) ---

32#include <sys/socket.h>
33
34#include <netinet/in.h>
35#include <netinet/tcp.h>
36
37#include <errno.h>
38#include <unistd.h>
39
40#include "sim/host.hh"
40#include "base/types.hh"
41#include "base/misc.hh"
42#include "base/socket.hh"
43
44using namespace std;
45
46bool ListenSocket::listeningDisabled = false;
47bool ListenSocket::anyListening = false;
48

--- 83 unchanged lines hidden ---
41#include "base/misc.hh"
42#include "base/socket.hh"
43
44using namespace std;
45
46bool ListenSocket::listeningDisabled = false;
47bool ListenSocket::anyListening = false;
48

--- 83 unchanged lines hidden ---