Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/url.h

    r9ad86bb rdf1694b  
    2626#include "bitlbee.h"
    2727
    28 #define PROTO_HTTP      2
    29 #define PROTO_HTTPS     5
    30 #define PROTO_SOCKS4    3
    31 #define PROTO_SOCKS5    4
    32 #define PROTO_DEFAULT   PROTO_HTTP
     28#define PROTO_HTTP              2
     29#define PROTO_HTTPS             5
     30#define PROTO_SOCKS4    3
     31#define PROTO_SOCKS5    4
     32#define PROTO_DEFAULT   PROTO_HTTP
    3333
    3434typedef struct url
     
    3636        int proto;
    3737        int port;
    38         char host[MAX_STRING+1];
    39         char file[MAX_STRING+1];
    40         char user[MAX_STRING+1];
    41         char pass[MAX_STRING+1];
     38        char host[MAX_STRING];
     39        char file[MAX_STRING];
     40        char user[MAX_STRING];
     41        char pass[MAX_STRING];
    4242} url_t;
    4343
Note: See TracChangeset for help on using the changeset viewer.