Skip to content

Commit

Permalink
merged changes because fuck collaboration, apparently
Browse files Browse the repository at this point in the history
  • Loading branch information
tlandino0 committed Nov 20, 2017
2 parents fd86b24 + fcbfcaa commit 1947cc9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HexDeploy/Form1.cs
Expand Up @@ -7,9 +7,9 @@

namespace HexDeploy
{
public partial class mainform : Form
public partial class Form1 : Form
{
public mainform()
public Form1()
{
InitializeComponent();
}
Expand All @@ -36,11 +36,11 @@ private void packettest()

try
{
IPAddress serverAddr = IPAddress.Parse(IPtextbox.Text);
IPAddress serverAddr = IPAddress.Parse(textBox5.Text);
try
{
//gross bit of code here. On the fly conversion.
int new0 = Convert.ToInt32(PortTextbox.Text);
int new0 = Convert.ToInt32(textBox3.Text);
//sets the endpoint with user input from a textbox
IPEndPoint ep0 = new IPEndPoint(serverAddr, new0);
//test message
Expand Down
3 changes: 3 additions & 0 deletions HexDeploy/HexDeploy.csproj
Expand Up @@ -80,6 +80,9 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="chatLog.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
14 changes: 14 additions & 0 deletions HexDeploy/chatLog.xml
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
<history>
<section>
<header>
<to> </to>
<from> </from>
</header>

<body>
<msg> </msg>
</body>

</section>
</history>

0 comments on commit 1947cc9

Please sign in to comment.