ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

int naws_string ( char buf,
int  width,
int  height 
)

Definition at line 137 of file ttelhndl.cpp.

Referenced by TTelnetHandler::ParseIAC().

                                                {
    int l = 0;
    unsigned char *buf = (unsigned char *)b;

    union {
        char szResponse[2];
        int n;
    };

    buf[l++] = IAC;
    buf[l++] = SB;
    buf[l++] = TELOPT_NAWS;

    n = width;
    buf[l] = szResponse[1];
    if(buf[l-1] == IAC) buf[l++] = IAC;
    buf[l++] = szResponse[0];
    if(buf[l-1] == IAC) buf[l++] = IAC;

    n = height;
    buf[l++] = szResponse[1];
    if(buf[l-1] == IAC) buf[l++] = IAC;
    buf[l++] = szResponse[0];
    if(buf[l-1] == IAC) buf[l++] = IAC;

    buf[l++] = IAC;
    buf[l++] = SE;

    return l;
}

Generated on Thu May 24 2012 04:42:52 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.