AcqServProtocol.java
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
  2.    Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
  3.    Software license is located in file "COPYING"
  4.    VideoServer application
  5.      $Id: AcqServProtocol.java,v 1.3 1999/01/14 02:41:52 andrew Exp $
  6. */
  7. package edu.sunysb.cs.ecsl.videoserver;
  8. public interface AcqServProtocol {
  9.   int KEY = 0;
  10.   int SHDESC = 1;
  11.   int LDESC = 2;
  12.   String[] _add_acq_stream_ = 
  13.   { "addacqstream", "add acquisition stream",
  14.     "database server informs acquisition server of the push server which" +
  15.     "is interested to receive video stream. If broadcast or multicast is " +
  16.     "needed, this is performed by the push server, not by acquisition " +
  17.     "server. Send IP and portnum" };
  18. }