~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/vio.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
/* Reset initialized VIO to use with another transport type */
60
60
 
61
61
void vio_reset(Vio* vio, enum enum_vio_type type,
62
 
               int sd, uint flags)
 
62
               int sd, uint32_t flags)
63
63
{
64
64
  free(vio->read_buffer);
65
65
  vio_init(vio, type, sd, flags);
68
68
 
69
69
/* Open the socket or TCP/IP connection and read the fnctl() status */
70
70
 
71
 
Vio *vio_new(int sd, enum enum_vio_type type, uint flags)
 
71
Vio *vio_new(int sd, enum enum_vio_type type, uint32_t flags)
72
72
{
73
73
  Vio *vio;
74
74