socket.cc (12228:e78be19036e9) socket.cc (12334:e0ab29a34764)
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;

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

33#include <netinet/in.h>
34#include <netinet/tcp.h>
35#include <sys/socket.h>
36#include <sys/types.h>
37#include <unistd.h>
38
39#include <cerrno>
40
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;

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

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

--- 100 unchanged lines hidden ---
42#include "base/types.hh"
43#include "sim/byteswap.hh"
44
45using namespace std;
46
47bool ListenSocket::listeningDisabled = false;
48bool ListenSocket::anyListening = false;
49

--- 100 unchanged lines hidden ---