Changeset 213 in Main for trunk/Server


Ignore:
Timestamp:
Oct 3, 2024, 2:45:40 AM (6 weeks ago)
Author:
Nishi
Message:

format the code

Location:
trunk/Server
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/http.c

    r212 r213  
    8383                int i;
    8484                int len;
    85                         int n;
     85                int n;
    8686#ifndef USE_POLL
    8787                struct timeval tv;
     
    344344                free(req->path);
    345345                req->path = result;
    346        
     346
    347347                incr = 0;
    348348                p = malloc(1);
     
    354354                                cbuf[0] = oldc;
    355355                                req->path[j] = 0;
    356        
     356
    357357                                pth = req->path + incr;
    358        
     358
    359359                                if(strcmp(pth, "..") == 0) {
    360360                                        int k;
     
    376376                                        free(tmp);
    377377                                }
    378        
     378
    379379                                incr = j + 1;
    380380                                if(oldc == 0) break;
  • trunk/Server/main.c

    r212 r213  
    6363#define STDERR_LOG(...) tt_printf(__VA_ARGS__)
    6464#elif defined(_MSC_VER)
    65 void STDERR_LOG(const char* format, ...){
     65void STDERR_LOG(const char* format, ...) {
    6666        va_list args;
    6767        va_start(args, format);
  • trunk/Server/server.c

    r212 r213  
    914914        int i;
    915915#ifndef USE_POLL
    916                 fd_set fdset;
    917                 struct timeval tv;
     916        fd_set fdset;
     917        struct timeval tv;
    918918#endif
    919919#if defined(__MINGW32__) || defined(__HAIKU__) || defined(_MSC_VER)
Note: See TracChangeset for help on using the changeset viewer.