summaryrefslogtreecommitdiff
path: root/comm/ObexStream.cc
blob: 1c0f8fcc0a37e0482cd5d44f96635a84be13c624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
/*
 *	Ivy League
 *
 *	OBEX protocol
 *
 *	Copyright 2000
 *	Centre d'Etudes de la Navigation Aerienne (CENA)
 *
 *	by Stephane Chatty
 *
 *	$Id$
 *
 */

#include "ObexStream.h"
#include "SignalHandler.h"
#include "error.h"
#include <ostream.h>

#include <stdio.h>

IvlObexStream :: IvlObexStream (IvlAddress* a, sword mps, IvlBaseScheduler* mpx)
: IvlStream (a),
  MaxPacketSize (mps)
{
	if (Listen () < 0) {
		SysError (ErrWarn, "IvlObexStream::IvlObexStream: Listen");
	} else {
		SetMode (IORead);
		Add (mpx);
	}
}

IvlObexStream :: ~IvlObexStream ()
{
}

void
IvlObexStream :: HandleRead ()
{
	int fd = Accept ();
	if (fd < 0) {
		SysError (ErrWarn, "IvlObexStream::HandleRead: Accept");
		return;
	}

	IvlObexAgent* cl = new IvlObexAgent (fd, this);
}


/******************************************************************************/

#define MAX_IN_SIZE 1024

/* OBEX request  codes */
#define OBEX_FINAL_BIT 0x80
#define OBEX_CONNECT_REQ 0x00
#define OBEX_DISCONNECT_REQ 0x01
#define OBEX_PUT_REQ 0x02
#define OBEX_GET_REQ 0x03
#define OBEX_COMMAND_REQ 0x04
#define OBEX_SETPATH_REQ 0x05
#define OBEX_ABORT_REQ 0x7f

/* OBEX headers encoding */
#define OBEX_HI_MASK 0xc0
#define OBEX_UNICODE_HDR 0x00
#define OBEX_STRING_HDR 0x40
#define OBEX_BYTE_HDR 0x80
#define OBEX_INT_HDR 0xc0

/* Version 1.1 */
#define OBEX_VERSION 0x11

/* OBEX response codes*/
#define OBEX_CONTINUE_RSP               0x10
#define OBEX_SWITCH_PRO_RSP             0x11
#define OBEX_SUCCESS_RSP                0x20
#define OBEX_CREATED_RSP                0x21
#define OBEX_ACCEPTED_RSP               0x22
#define OBEX_NO_CONTENT_RSP             0x24
#define OBEX_BAD_REQUEST_RSP            0x40
#define OBEX_UNAUTHORIZED_RSP           0x41
#define OBEX_PAYMENT_REQUIRED_RSP       0x42
#define OBEX_FORBIDDEN_RSP              0x43
#define OBEX_NOT_FOUND_RSP              0x44
#define OBEX_METHOD_NOT_ALLOWED_RSP     0x45
#define OBEX_CONFLICT_RSP               0x49
#define OBEX_INTERNAL_SERVER_ERROR_RSP  0x50
#define OBEX_NOT_IMPLEMENTED_RSP        0x51
#define OBEX_DATABASE_FULL_RSP          0x60
#define OBEX_DATABASE_LOCKED_RSP        0x61

/* OBEX header types */
#define OBEX_HEADER_COUNT	0x00 /* Number of objects (used by connect) */
#define OBEX_HEADER_NAME	0x01 /* Name of the object */
#define OBEX_HEADER_TYPE	0x02 /* Type of the object */
#define OBEX_HEADER_LENGTH	0x03 /* Total lenght of object */
#define OBEX_HEADER_TIME	0x04 /* Last modification of object */
#define OBEX_HEADER_DESCRIPTION	0x05 /* Description of object */
#define OBEX_HEADER_TARGET	0x06 /* Identifies the target for the object */
#define OBEX_HEADER_HTTP	0x07 /* an HTTP 1.x header */
#define OBEX_HEADER_BODY	0x08 /* Data part of the object */
#define OBEX_HEADER_BODY_END	0x09 /* Last data part of the object */
#define OBEX_HEADER_WHO		0x0a /* Identifies the sender of the object */
#define OBEX_HEADER_CONNECTIONID	0x0b /* Connection identifier */
#define OBEX_HEADER_PARAMS	0x0c /* App. parameters */
#define OBEX_HEADER_CHALLENGE	0x0d /* Auth. challenge */
#define OBEX_HEADER_RESPONSE	0x0e /* Auth. response */
#define OBEX_HEADER_CLASS	0x0f /* Object class */

#if 0
class IvlObexHeader {
public:
	byte	Hi;
	lword	Length;
	lword	Offset;
	void*	Buf;
		IvlObexHeader (byte hi, lword l, lword o) : Hi (hi), Length (l), Offset (o) {}
};
#endif

enum status { Waiting, Connecting, Sending };

IvlObexAgent :: IvlObexAgent (int fd, IvlObexStream* l)
: IvlBufStream (),
  MyLink (l),
  CurObj (0),
  Status (Waiting)
{
	SetMode (IORead);
	IvlChannel::Open (fd);
	Add (l->GetScheduler ());
	int max_out = l->MaxPacketSize;
	OutputBuffer (max_out +128, 128, max_out + 128, max_out) ;
	InputBuffer (MAX_IN_SIZE, 128, MAX_IN_SIZE + 128);
}

/* this is a problem: how do I make sure that agents created this way (after a
DiscoverDevices) are not also created when peers connect to me? Looks similar to
the situation with Ivy agents. */
IvlObexAgent :: IvlObexAgent (IvlAddress* a, IvlObexStream* l)
: IvlBufStream (0, a),
  MyLink (l),
  CurObj (0),
  Status (Waiting)
{
	if (!Setup ()) {
		cerr << "Obex warning. Cannot set up stream: ";
		perror ("");
		return;
	}
	SetMode (IORead);
	Add (l->GetScheduler ());
	int max_out = l->MaxPacketSize;
	OutputBuffer (max_out +128, 128, max_out + 128, max_out) ;
	InputBuffer (MAX_IN_SIZE, 128, MAX_IN_SIZE + 128);
}

IvlObexAgent :: ~IvlObexAgent ()
{
}


void
IvlObexAgent :: HandleRead ()
{
#if 1
	int n = ReadInput ();
	if (n <= 0) {
		/* could emit a OBEX_EV_LINKERR event to the upper software layers */
		cerr << "connection was interrupted\n";
		return;
	}
#else
	/* This is here because IRDA sockets seem to spuriously announce they have
	   data available. Faudra en reprendre des bouts dans BufStream et Channel. */

	/* read in buffer */
	InBuffer.NeedSize (1);
	int n = recv (Fd, (void*) InBuffer.Free (), 1, MSG_PEEK);
	if (n > 0) {
		n = recv (Fd, (void*) InBuffer.Free (), InBuffer.FreeLength (), 0);
		InBuffer.More (n);
	} else if (n == 0) {
//		cerr << "no data!?\n";
		return;
	} else {
		/* could emit a OBEX_EV_LINKERR event to the upper software layers */
		cerr << "connection was interrupted\n";
		return;
	}
#endif
	cerr << "read " << n << " bytes\n";

	/* if not enough data for reading packet length, wait for future input */
	if (InBuffer.BufLength () < 3)
		return;

	sword len;
	InBuffer.PeekShort (len, 1);
	len = ntohs (len);

	/* if packet is not complete, wait for future input */
	if (InBuffer.BufLength () < len)
		return;



	/* read operation code and skip packet length */
	byte reqcode;
	InBuffer.ReadByte (reqcode);
	InBuffer.Flush (2);

	/* extract 'final' bit from reqcode */
	bool final = reqcode & OBEX_FINAL_BIT;
	reqcode = reqcode & ~OBEX_FINAL_BIT;

	/* should complete status-based tests!!! */

	switch (reqcode) {
	case OBEX_CONNECT_REQ:
		ParseConnect (len, final);
		break;
	case OBEX_DISCONNECT_REQ:
		ParseDisconnect (len, final);
		break;
	case OBEX_ABORT_REQ:
		ParseAbort (len, final);
		break;
	case OBEX_PUT_REQ:
		ParsePut (len, final);
		break;
	case OBEX_GET_REQ:
		ParseGet (len, final);
		break;
	case OBEX_SETPATH_REQ:
		ParseSetPath (len, final);
		break;
	case OBEX_CONTINUE_RSP:
		cerr << "--> continue.\n";
		ParseHeaders (len, final);
		if (Status == Sending) {
			Status = Waiting;
		}
		break;
	case OBEX_SWITCH_PRO_RSP:
		cerr << "--> switch protocol.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_SUCCESS_RSP:
		cerr << "--> success.\n";
		ParseHeaders (len, final);
		if (Status == Connecting) {
			KeepSending ();
		} else if (Status == Sending) {
			Status = Waiting;
		}
		break;
	case OBEX_CREATED_RSP:
		cerr << "--> created.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_ACCEPTED_RSP:
		cerr << "--> accepted.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_NO_CONTENT_RSP:
		cerr << "--> no content.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_BAD_REQUEST_RSP:
		cerr << "--> bad request.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_UNAUTHORIZED_RSP:
		cerr << "--> unauthorized.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_PAYMENT_REQUIRED_RSP:
		cerr << "--> payment required.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_FORBIDDEN_RSP:
		cerr << "--> forbidden.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_NOT_FOUND_RSP:
		cerr << "--> not found.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_METHOD_NOT_ALLOWED_RSP:
		cerr << "--> not allowed.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_CONFLICT_RSP:
		cerr << "--> conflict.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_INTERNAL_SERVER_ERROR_RSP:
		cerr << "--> server error.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_NOT_IMPLEMENTED_RSP:
		cerr << "--> not implemented.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_DATABASE_FULL_RSP:
		cerr << "--> database full.\n";
		ParseHeaders (len, final);
		break;
	case OBEX_DATABASE_LOCKED_RSP:
		cerr << "--> database locked.\n";
		ParseHeaders (len, final);
		break;
	default:
		cerr << "unexpected request!\n";
		break;
	}
}

#if 0
	/* if this is the first packet of an object */
	if (!CurObj) {
		cerr << "new object\n";
		/* allocate new object
			or deliver OBEX_INTERNAL_SERVER_ERROR_RSP to peer */

		DecodeObjectPart ();

		if (!final)
			/* should deliver OBEX_EV_REQHINT to upper layers */
			;
	} else {
		DecodeObjectPart ();
	}

#endif

void
IvlObexAgent :: ParseConnect (sword len, bool final)
{
	if (len < 4) {
		cerr << "IvlObexAgent: malformed connection header\n";
		/* should send OBEX_BAD_REQUEST_RSP to peer */
		/* could deliver OBEX_EV_PARSEERR to the upper software layers */
		InBuffer.Flush ();
		return;
	}

	/*** faudrait aussi traiter le cas ou il n'y a pas de Connect au
	     debut de la connexion ? */

	byte version;
	byte flags;
	sword max_packet_length;
	InBuffer.ReadByte (version);
	InBuffer.ReadByte (flags);
	InBuffer.ReadShort (max_packet_length);
	max_packet_length = ntohs (max_packet_length);
	if (OutSize > max_packet_length)
		OutSize = max_packet_length;

	cerr << "--> connect: version " << (version >> 4) << "." << (version & 0x0f)
		<< ", " << OutSize << " bytes packets max\n";

	IvlEvent* ev = new IvlObexAgentEvent (this, IvlObexAgentEvent::ObexNewAgent);
	MyLink->NewAgents.Dispatch (*ev);

	ParseHeaders (len, final);


	/* this will have to be improved, of course,
	   but the response to Connect is not like other responses */
	OutBuffer.WriteByte (OBEX_SUCCESS_RSP | OBEX_FINAL_BIT);
	OutBuffer.WriteShort (htons (7));
	OutBuffer.WriteByte (OBEX_VERSION);
	OutBuffer.WriteByte (0);
	OutBuffer.WriteShort (htons (MAX_IN_SIZE));
	Flush ();
}

void
IvlObexAgent :: ParseDisconnect (sword len, bool final)
{
	cerr << "--> disconnect.\n";
	InBuffer.Flush ();
	OutBuffer.WriteByte (OBEX_SUCCESS_RSP | OBEX_FINAL_BIT);
	OutBuffer.WriteShort (htons (3));
	Flush ();
	OutSize = MyLink->MaxPacketSize;
}

void
IvlObexAgent :: ParseAbort (sword len, bool final)
{
	cerr << "--> abort.\n";
	InBuffer.Flush ();
	Status = Waiting;
}

void
IvlObexAgent :: ParsePut (sword len, bool final)
{
	cerr << "--> put " << len << " bytes " << (final ? "!\n" : ".. \n");
	ParseHeaders (len, final);
	byte rsp = final ? OBEX_SUCCESS_RSP : OBEX_CONTINUE_RSP;
	OutBuffer.WriteByte (rsp | OBEX_FINAL_BIT);
	OutBuffer.WriteShort (htons (3));
	Flush ();
}

void
IvlObexAgent :: ParseGet (sword len, bool final)
{
	cerr << "--> get.\n";
	InBuffer.Flush ();
}

void
IvlObexAgent :: ParseSetPath (sword len, bool final)
{
	cerr << "--> setpath.\n";
	InBuffer.Flush ();
}

void
IvlObexAgent :: ParseHeaders (sword, bool)
{
	while (InBuffer.BufLength () > 0) {
		byte hi;
		InBuffer.ReadByte (hi);

		switch (hi & ~OBEX_HI_MASK) {
		case OBEX_HEADER_COUNT:
			cerr << "COUNT:\n";
			break;
		case OBEX_HEADER_NAME:
			cerr << "NAME:\n";
			break;
		case OBEX_HEADER_TYPE:
			cerr << "TYPE:\n";
			break;
		case OBEX_HEADER_LENGTH:
			cerr << "LENGTH:\n";
			break;
		case OBEX_HEADER_TIME:
			cerr << "TIME:\n";
			break;
		case OBEX_HEADER_DESCRIPTION:
			cerr << "DESCR:\n";
			break;
		case OBEX_HEADER_TARGET:
			cerr << "TARGET:\n";
			break;
		case OBEX_HEADER_HTTP:
			cerr << "HTTP:\n";
			break;
		case OBEX_HEADER_BODY:
			cerr << "BODY:\n";
			break;
		case OBEX_HEADER_BODY_END:
			cerr << "BODY END:\n";
			break;
		case OBEX_HEADER_WHO:
			cerr << "WHO:\n";
			break;
		case OBEX_HEADER_CONNECTIONID:
			cerr << "CONNECTIONID\n";
			break;
		case OBEX_HEADER_PARAMS:
			cerr << "PQRQMS\n";
			break;
		case OBEX_HEADER_CHALLENGE:
			cerr << "CHALLENGE\n";
			break;
		case OBEX_HEADER_RESPONSE:
			cerr << "RESPONSE:\n";
			break;
		case OBEX_HEADER_CLASS:
			cerr << "CLASS\n";
			break;
		default:
			cerr << "UNKNOWN:\n";
		}
		switch (hi & OBEX_HI_MASK) {
		case OBEX_UNICODE_HDR:
			{
			sword hlen;
			InBuffer.ReadShort (hlen);
			hlen = ntohs (hlen);
			byte buf[hlen-3];
			InBuffer.ReadBuf (buf, hlen-3);
			int l = hlen/2 + 1;
			unsigned char str[l];
			unsigned char* p = str;
			unsigned char* q = buf+1;
			while (*p = *q++) {
				p++;
				q++;
			}
			cerr << "Unicode header, " << hlen - 3 << " bytes: \"" << str << "\"\n";
			break;
			}
		case OBEX_STRING_HDR:
			{
			sword hlen;
			InBuffer.ReadShort (hlen);
			hlen = ntohs (hlen);
			byte buf[hlen-3+1]; // on ajoute un pour l'impression de debug
			InBuffer.ReadBuf (buf, hlen-3);
			buf[hlen-3] = '\0'; // pour l'impression de debug
			cerr << "String header, " << hlen - 3 << " bytes: \"" << (char*) buf << "\"\n";
			break;
			}
		case OBEX_INT_HDR:
			{
			lword l;
			InBuffer.ReadLong (l);
			l = ntohl (l);
			cerr << "Int-long header: 0x" << hex (l) << "\n";
			break;
			}
		case OBEX_BYTE_HDR:
			{
			byte b;
			InBuffer.ReadByte (b);
			cerr << "Char-long header: 0x" << hex (b) << "\n";
			break;
			}
		default:
			cerr << "bad header 0x" << hex (hi) << "\n";

		}
	}

	/* if not correctly parsed object, then
		deliver OBEX_BAD_REQUEST_RSP to peer
		and deliver OBEX_EV_PARSEERR to upper soft layers*/
}


void
IvlObexAgent :: SendHeader (byte hi, byte encoding, const char* hv, int len)
{
	IvlSignalBlocker b (SigPipe);

	OutBuffer.WriteByte (hi | encoding);

	switch (encoding) {
	case OBEX_UNICODE_HDR:
		{
		OutBuffer.WriteShort (htons (3 + len));
		byte buf[len];
		byte* p = buf;
		while (*hv) {
			*p++ = '\0';
			*p++ = *hv++;
		}
		*p++ = '\0';
		*p++ = '\0';
		OutBuffer.WriteBuf ((const byte*) buf, len);
		break;
		}
		break;
	case OBEX_STRING_HDR:
		{
		OutBuffer.WriteShort (htons (3 + len));
		OutBuffer.WriteBuf ((const byte*) hv, len);
		break;
		}
	case OBEX_BYTE_HDR:
		OutBuffer.WriteByte ((byte) hv);
		break;
	case OBEX_INT_HDR:
		OutBuffer.WriteLong (htonl ((lword) hv));
		break;
	}
} 


/* tout ce qui suit serait a reecrire si on avait d'autres headers possibles */
void
IvlObexAgent :: SendObject (IvlObexObject& o)
{
	/* faudrait p'tet d'abord envoyer la connexion et mettre status = connecting ! */
	/* faudrait aussi traiter les cas ou ca doit absolument tenir en un paquet */

	/* plein de calculs prealables pour savoir combien on va envoyer en fait */
	int len = 3;
	int class_len = o.Class ? (1 + 4) : 0;
	int name_len = o.Name ? (3 + 2 * (strlen (o.Name) + 1)) : 0;
	int descr_len = o.Description ? (3 + 2 * (strlen (o.Description) + 1)) : 0;
	int body_len = o.Body ? (3 + strlen (o.Body) + 1) : 0;
	bool send_descr = false;
	bool send_all_body;

	if (len + class_len + name_len > OutSize) {
		cerr << "object name is longer than packet size!\n";
		return;
	}
	len += (class_len + name_len);

	if (len + descr_len > OutSize)
		goto send;
	send_descr = true;
	len += descr_len;


	if (len + body_len <= OutSize) {
		len += body_len;
		send_all_body = true;
	} else
		len = OutSize;

	cerr << len << " bytes\n";

send:
	OutBuffer.WriteByte (OBEX_PUT_REQ | (send_all_body ? OBEX_FINAL_BIT : 0));
	OutBuffer.WriteShort (htons (len));

	if (o.Class)
		SendHeader (OBEX_HEADER_CLASS, OBEX_INT_HDR, (const char*) o.Class, 0);

	if (o.Name)
		SendHeader (OBEX_HEADER_NAME, OBEX_UNICODE_HDR, o.Name, name_len - 3);

	if (o.Description)
		if (send_descr)
			SendHeader (OBEX_HEADER_DESCRIPTION, OBEX_STRING_HDR, o.Description, descr_len - 3);
		else
			; // enregistrer

	if (o.Body)
		if (send_all_body)
			SendHeader (OBEX_HEADER_BODY_END, OBEX_STRING_HDR, o.Body, body_len - 3);
		else
			; // enregistrer


#if 0
	/* a faire a terme : decouper l'emission en plusieurs paquets, dont
	   un avec un BODY_END vide (cf doc page 29) */
	/* et puis aussi ajouter la deconnexion */

	OutBuffer.WriteByte (OBEX_PUT_REQ | OBEX_FINAL_BIT);
	OutBuffer.WriteShort (htons (3));
	SendHeader (OBEX_HEADER_BODY_END, 0);
#endif
	Flush ();
	Status = Sending;
}

void
IvlObexAgent :: KeepSending ()
{
}


IvlEventType* IvlObexAgentEvent::ObexNewAgent = new IvlEventType ("new agent", 0, 0);
IvlEventType* IvlObexAgentEvent::ObexAgentBye = new IvlEventType ("agent bye", 0, 0);

IvlObexAgentEvent :: IvlObexAgentEvent (IvlObexAgent* a, IvlEventType* t)
: IvlEvent (t),
  Agent (a)
{
}

IvlObexAgentEvent :: ~IvlObexAgentEvent ()
{
}


IvlObexObject :: IvlObexObject ()
: Name (),
  Description (),
  Body (),
  Class (0)
{
}

IvlObexObject :: ~IvlObexObject ()
{
}

void
IvlObexObject :: SetName (const char* n)
{
	Name = n;
}

void
IvlObexObject :: SetDescription (const char* d)
{
	Description = d;
}

void
IvlObexObject :: SetBody (const char* b)
{
	Body = b;
}

void
IvlObexObject :: SetClass (lword c)
{
	Class = c;
}