]> andersk Git - moira.git/blobdiff - lib/mr_private.h
Command line printer manipulation client, and build goo.
[moira.git] / lib / mr_private.h
index 5f4944d20ec109d2d3a1f73b3718214869056299..0838b40e817f2a96815151f5797b7702a2cc3532 100644 (file)
@@ -1,56 +1,53 @@
-/*
- *     $Source$
- *     $Author$
- *     $Header$
+/* $Id$
  *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ * Private declarations of the Moira library.
  *
- *     Private declarations of the SMS library.
- * 
- *     $Log$
- *     Revision 1.2  1987-05-31 22:07:06  wesommer
- *     Private data to the sms server and library.
- *
- * Revision 1.1  87/05/20  03:12:00  wesommer
- * Initial revision
- * 
- */
-
-#include <stdio.h>
-#include <gdb.h>
-#include <sms.h>
-
-typedef struct sms_params {
-       int sms_size;
-       int sms_version_no;
-       union {
-               int procno;     /* for call */
-               int status;     /* for reply */
-       } u;
-#define sms_procno u.procno
-#define sms_status u.status
-       int sms_argc;
-       char **sms_argv;
-       int *sms_argl;
-       char *sms_flattened;
-       int sms_state;
-} sms_params;
-
-extern CONNECTION _sms_conn;
-
-extern OPERATION _sms_send_op, _sms_recv_op;
-extern int sms_start_recv(), sms_start_send();
-extern int sms_inited;
-
-#define SMS_GDB_SERV "sms:#8973"
-
-/*
- * You are in a maze of twisty little FSM's, all different.
+ * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology
+ * For copying and distribution information, please see the file
+ * <mit-copyright.h>.
  */
 
-#define S_RECV_START 1
-#define S_RECV_DATA 2
-#define S_DECODE_DATA 3
-
-#define EVER (;;)
-       
+#include <mit-copyright.h>
+#include <moira.h>
+
+#include <sys/types.h>
+
+#ifndef _WIN32
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#endif /*_WIN32*/
+
+extern int _mr_conn, mr_inited;
+
+typedef struct mr_params {
+  union {
+    u_long mr_procno;     /* for call */
+    u_long mr_status;     /* for reply */
+  } u;
+  int mr_argc;
+  char **mr_argv;
+  int *mr_argl;
+  unsigned char *mr_flattened;
+  u_long mr_filled;
+} mr_params;
+
+#define CHECK_CONNECTED if (!_mr_conn) return MR_NOT_CONNECTED
+
+#define getlong(cp, l) do { l = ((((unsigned char *)cp)[0] * 256 + ((unsigned char *)cp)[1]) * 256 + ((unsigned char *)cp)[2]) * 256 + ((unsigned char *)cp)[3]; } while(0)
+#define putlong(cp, l) do { ((unsigned char *)cp)[0] = (unsigned char)(l >> 24); ((unsigned char *)cp)[1] = (unsigned char)(l >> 16); ((unsigned char *)cp)[2] = (unsigned char)(l >> 8); ((unsigned char *)cp)[3] = (unsigned char)(l); } while(0)
+
+/* prototypes from mr_call.h */
+int mr_do_call(struct mr_params *params, struct mr_params *reply);
+int mr_send(int fd, struct mr_params *params);
+int mr_receive(int fd, struct mr_params *params);
+int mr_cont_receive(int fd, struct mr_params *params);
+void mr_destroy_reply(mr_params reply);
+
+/* prototypes from mr_connect.h */
+int mr_accept(int s, struct sockaddr_in *sin);
+int mr_cont_accept(int conn, char **buf, int *nread);
+int mr_connect_internal(char *server, char *port);
+int mr_listen(char *port);
+
+/* prototypes from mr_init.c */
+void mr_init(void);
This page took 0.032244 seconds and 4 git commands to generate.