Skip to content

Commit

Permalink
initial console only app
Browse files Browse the repository at this point in the history
  • Loading branch information
seuffert committed Mar 14, 2011
1 parent 10d8d2a commit 9c89d27
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions XBSlink/CommandLine.cs
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace XBSlink
{
class CommandLine
{
public static xbs_udp_listener udp_listener = null;
public static xbs_sniffer sniffer = null;
public static xbs_node_list node_list = null;
private xbs_natstun natstun = null;

public CommandLine()
{
node_list = new xbs_node_list();
udp_listener = new xbs_udp_listener();
natstun = new xbs_natstun();
}


}
}

0 comments on commit 9c89d27

Please sign in to comment.