Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7075199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:08:56+00:00 2026-05-28T06:08:56+00:00

Im trying to send ascii encoded message to a server. My problem is coming

  • 0

Im trying to send ascii encoded message to a server. My problem is coming in when I try to append the carriage return to the string

-(void)button2Pressed
{
    NSMutableString *mutableString = [NSMutableString stringWithString:@"h323name get"];

    [self sendStringCommand:mutableString];
}

-(void)sendStringCommand:(NSMutableString*)string
{    
    [string appendString:@"\\r"]; 

    NSLog(@"string %@ wtf",[string dataUsingEncoding:NSASCIIStringEncoding]);
    NSData * testData = [[NSData alloc]initWithBytes:[string dataUsingEncoding:NSASCIIStringEncoding] length:sizeof([string dataUsingEncoding:NSASCIIStringEncoding])];


    [socket  writeData:testData withTimeout:20 tag:1];  

}

currently this outputs this:

string <68333233 6e616d65 20676574 5c72> wtf

which should be

string <68333233 6e616d65 20676574 0d> wtf

Just plain /r did a new line hence the wtf characters after the data in the nslog

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:08:56+00:00Added an answer on May 28, 2026 at 6:08 am

    You have too many backslashes. Try this:

    [string appendString:@"\r"]; 
    

    Also, your creation of testData is completely wrong. The way you are creating testData is passing a pointer to an NSData object as the “bytes” parameter, and passing the size of a pointer to an NSData as the “length” parameter. You should just do this:

    NSData *testData = [string dataUsingEncoding:NSASCIIStringEncoding];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to send mail with a message that has some non ascii
I'm trying to fix a problem with an application that sends a message to
Hey, I'm currently trying to send an image file to a web server using
I am trying to send multiple files to a server ever 2 seconds and
I've been trying to send a packet from a client to a server via
This issue came to light as I was trying to send an HTML message
I'm trying to send some UDP packets to a server. I use Wireshark to
I am trying to send HTTP request and recieve responce from the server over
I'm trying to come up with the correct url-encoded info hash to send to
I am trying to send a Rich Text Format email message using Outlook 2003.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.