Changeset 354 for trunk/src/emx/include/arpa/nameser.h
- Timestamp:
- Jul 11, 2003, 1:39:47 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/arpa/nameser.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r353 r354 362 362 363 363 364 #ifdef TCPV40HDRS365 /** @name tcpip40 function mappings.366 * @{ */367 #define _getshort tcpip40__getshort368 #define _getlong tcpip40__getlong369 #define putshort tcpip40_putshort370 #define putlong tcpip40_putlong371 #define dn_expand tcpip40_dn_expand372 #define dn_comp tcpip40_dn_comp373 #define dn_find tcpip40_dn_find374 #define dn_skipname tcpip40_dn_skipname375 #define res_init tcpip40_res_init376 #define res_mkquery tcpip40_res_mkquery377 #define res_send tcpip40_res_send378 #define res_query tcpip40_res_query379 #define res_search tcpip40_res_search380 #define res_querydomain tcpip40_res_querydomain381 /* @} */382 #endif383 384 364 /* function prototypes */ 385 u_short _System _getshort(u_char*); 386 u_long _System _getlong(u_char*); 365 #ifndef TCPCALL 366 #define TCPCALL _System 367 #endif 368 369 u_short TCPCALL _getshort(u_char*); 370 u_long TCPCALL _getlong(u_char*); 387 371 #ifdef TCPV40HDRS /* newer have this in resolver */ 388 void _Systemputshort(u_short, u_char *);389 void _Systemputlong(u_long, u_char *);390 int _Systemdn_expand(__const__ u_char*, __const__ u_char*, __const__ u_char*, u_char*, int);391 int _Systemdn_comp(__const__ u_char*, u_char*, int, u_char**, u_char**);392 int _Systemdn_find(u_char*, u_char*, u_char**, u_char**);393 int _Systemdn_skipname(__const__ u_char*, __const__ u_char*);394 int _Systemres_init(void);395 int _Systemres_mkquery(int, __const__ char*, int, int, __const__ char*, int, __const__ struct rrec*, char*, int);396 int _Systemres_send(__const__ char*, int, char*, int);397 int _Systemres_query(char*, int, int, u_char*, int);398 int _Systemres_search(char*, int, int, u_char*, int);399 int _Systemres_querydomain(char*, char*, int, int, u_char*, int);372 void TCPCALL putshort(u_short, u_char *); 373 void TCPCALL putlong(u_long, u_char *); 374 int TCPCALL dn_expand(__const__ u_char*, __const__ u_char*, __const__ u_char*, u_char*, int); 375 int TCPCALL dn_comp(__const__ u_char*, u_char*, int, u_char**, u_char**); 376 int TCPCALL dn_find(u_char*, u_char*, u_char**, u_char**); 377 int TCPCALL dn_skipname(__const__ u_char*, __const__ u_char*); 378 int TCPCALL res_init(void); 379 int TCPCALL res_mkquery(int, __const__ char*, int, int, __const__ char*, int, __const__ struct rrec*, char*, int); 380 int TCPCALL res_send(__const__ char*, int, char*, int); 381 int TCPCALL res_query(char*, int, int, u_char*, int); 382 int TCPCALL res_search(char*, int, int, u_char*, int); 383 int TCPCALL res_querydomain(char*, char*, int, int, u_char*, int); 400 384 #endif 401 385 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.