FreeTDS API
Loading...
Searching...
No Matches
server.h
1/* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2 * Copyright (C) 1998-1999 Brian Bruns
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20#ifndef _tdsserver_h_
21#define _tdsserver_h_
22#endif
23
24#ifdef __cplusplus
25extern "C"
26{
27#endif
28#if 0
29}
30#endif
31
32/* login.c */
33unsigned char *tds7_decrypt_pass(const unsigned char *crypt_pass, int len, unsigned char *clear_pass);
34TDSSOCKET *tds_listen(TDSCONTEXT * ctx, int ip_port);
35int tds_read_login(TDSSOCKET * tds, TDSLOGIN * login);
36int tds7_read_login(TDSSOCKET * tds, TDSLOGIN * login);
37TDSLOGIN *tds_alloc_read_login(TDSSOCKET * tds);
38
39/* query.c */
40char *tds_get_query(TDSSOCKET * tds);
41char *tds_get_generic_query(TDSSOCKET * tds);
42
43/* server.c */
44void tds_env_change(TDSSOCKET * tds, int type, const char *oldvalue, const char *newvalue);
45void tds_send_msg(TDSSOCKET * tds, int msgno, int msgstate, int severity, const char *msgtext, const char *srvname,
46 const char *procname, int line);
47void tds_send_login_ack(TDSSOCKET * tds, const char *progname);
48void tds_send_eed(TDSSOCKET * tds, int msgno, int msgstate, int severity, char *msgtext, char *srvname, char *procname, int line);
49void tds_send_err(TDSSOCKET * tds, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr);
50void tds_send_capabilities_token(TDSSOCKET * tds);
51/* TODO remove, use tds_send_done */
52void tds_send_done_token(TDSSOCKET * tds, TDS_SMALLINT flags, TDS_INT numrows);
53void tds_send_done(TDSSOCKET * tds, int token, TDS_SMALLINT flags, TDS_INT numrows);
54void tds_send_control_token(TDSSOCKET * tds, TDS_SMALLINT numcols);
55void tds_send_col_name(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
56void tds_send_col_info(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
57void tds_send_result(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
58void tds7_send_result(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
59void tds_send_table_header(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
60void tds_send_row(TDSSOCKET * tds, TDSRESULTINFO * resinfo);
61void tds71_send_prelogin(TDSSOCKET * tds);
62
63#if 0
64{
65#endif
66#ifdef __cplusplus
67}
68#endif
Definition tds.h:518
Hold information for any results.
Definition tds.h:773
Definition tds.h:1033
Information for a server connection.
Definition tds.h:1180