~psiphon-inc/psiphon/trunk

« back to all changes in this revision

Viewing changes to trunk/PsiphonX/psiclient/locallistener.h

  • Committer: Adam Kruger
  • Date: 2011-02-07 20:43:10 UTC
  • mfrom: (157.1.3 psiphon-with-psiphonx)
  • Revision ID: akruger@kruger-xps-20110207204310-6ph82r21rce8ldze
Merge PsiphonX.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2010, Psiphon Inc.
 
3
 * All rights reserved.
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation, either version 3 of the License, or
 
8
 * (at your option) any later version.
 
9
 * 
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 */
 
19
 
 
20
#pragma once
 
21
 
 
22
#include <string>
 
23
#include <ws2tcpip.h>
 
24
 
 
25
using namespace std;
 
26
 
 
27
class LocalListener
 
28
{
 
29
public:
 
30
    LocalListener(const string& IP, unsigned short port);
 
31
    virtual ~LocalListener(void);
 
32
    void Initialize(void);
 
33
    void Accept(int& forwardSocket);
 
34
    int ListenSocket(void);
 
35
 
 
36
private:
 
37
    string m_listenIP;
 
38
    unsigned short m_listenPort;
 
39
    int m_listenSocket;
 
40
    struct sockaddr_in m_sin;
 
41
    socklen_t m_sinlen;
 
42
};