Changes in lib/url.h [9ad86bb:df1694b]
Legend:
- Unmodified
- Added
- Removed
-
lib/url.h
r9ad86bb rdf1694b 26 26 #include "bitlbee.h" 27 27 28 #define PROTO_HTTP 29 #define PROTO_HTTPS 30 #define PROTO_SOCKS4 31 #define PROTO_SOCKS5 32 #define PROTO_DEFAULT 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 33 33 34 34 typedef struct url … … 36 36 int proto; 37 37 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]; 42 42 } url_t; 43 43
Note: See TracChangeset
for help on using the changeset viewer.