~ubuntu-branches/ubuntu/saucy/dahdi-tools/saucy

« back to all changes in this revision

Viewing changes to xpp/mpp_funcs.h

  • Committer: Bazaar Package Importer
  • Author(s): Jean-Michel Dault, Tzafrir Cohen
  • Date: 2010-02-16 13:44:09 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100216134409-4y4k26mgzyra537o
Tags: 1:2.2.1-0ubuntu1
* Merge from Debian pkg-voip.
  * Changes from Debian:
  - debian/control: Change Maintainer
  - debian/control: Removed Uploaders field.
  - debian/control: Removed Debian Vcs-Svn entry and replaced with
      ubuntu-voip Vcs-Bzr, to reflect divergence in packages.
  - debian/control: Package dahdi Depends on  dahdi-dkms | dahdi-source

* From Debian pkg-voip:
[ Tzafrir Cohen ]
* New upstream release (Closes: #536257, #564381).
* Patch 'bashism' dropped: merged upstream. 
* Patch xpp_no_extra_at dropped: merged upstream. 
* Add an example genconf_parameters.
* Compat level 7.
* Bump standars version to 3.8.3.0 (no change needed)
* Udev rules are now in dahdi-linux.
* Patches perl_fix_noserial, perl_fix_transportdir: Fixes for some
  minor perl issues.
* Add the missing ${misc:Depends}, as per lintian. 
* Patch astribank_allow_ignoreend: an extra missing patch from upstream. 
* Patches init_unload_modules and init_unload_oslec: also unload OSLEC
  when unloading all modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
int mpp_extrainfo_get(struct astribank_device *astribank, struct extrainfo *info);
46
46
int mpp_extrainfo_set(struct astribank_device *astribank, const struct extrainfo *info);
47
47
int mpp_eeprom_blk_rd(struct astribank_device *astribank, uint8_t *buf, uint16_t offset, uint16_t len);
48
 
int mpp_send_start(struct astribank_device *astribank, enum dev_dest dest);
 
48
int mpp_send_start(struct astribank_device *astribank, enum dev_dest dest, const char *ihex_version);
49
49
int mpp_send_end(struct astribank_device *astribank);
50
50
int mpp_send_seg(struct astribank_device *astribank, const uint8_t *data, uint16_t offset, uint16_t len);
51
51
int mpp_reset(struct astribank_device *astribank, int full_reset);
72
72
 
73
73
/* low-level */
74
74
int process_command(struct astribank_device *astribank, struct mpp_command *cmd, struct mpp_command **reply_ref);
75
 
struct mpp_command *new_command(uint8_t op, uint16_t extra_data);
 
75
struct mpp_command *new_command(uint8_t protocol_version, uint8_t op, uint16_t extra_data);
76
76
void free_command(struct mpp_command *cmd);
77
77
 
 
78
const char *dev_dest2str(enum dev_dest dest);
 
79
 
78
80
#endif  /* MPP_FUNCS_H */