repo.or.cz
/
libtpproto-csharp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial commit
[libtpproto-csharp.git]
/
libtpproto-csharp
/
Net
/
Http.cs
blob
2a13c815e3a233aef9b48ce9b0daba914ab99411
1
/*
2
* License: GPLv3+
3
* Created at 18:07 19.05.2008
4
*
5
* Author: Marcel Hauf
6
*/
7
8
using
System
;
9
10
namespace
LibTpProto
.
Net
11
{
12
/// <summary>
13
/// Description of Http.
14
/// </summary>
15
public class
Http
16
{
17
public string
ipAdress
;
18
public const
TypeOfConnection ConnectionType
=
TypeOfConnection
.
Http
;
19
20
public
Http
()
21
{
22
// TODO: Http tunneling
23
}
24
}
25
}